Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

A few inspired things #1828

Merged
merged 2 commits into from Apr 20, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 4 additions & 4 deletions Quicksilver/Code-QuickStepCore/QSGlobalSelectionProvider.h
Expand Up @@ -14,12 +14,12 @@

@interface QSGlobalSelectionProvider : NSObject <QSProxyObjectProvider>

@property NSTimeInterval failDate;
@property NSDictionary *currentAppSelectionProxyInfo;
@property id currentAppSelectionProxyProvider;
@property (readonly,assign) NSTimeInterval failDate;
@property (readonly,retain) NSDictionary *currentAppSelectionProxyInfo;
@property (readonly,retain) id currentAppSelectionProxyProvider;

+ (instancetype)sharedInstance;
- (id)currentSelection;
+(id)currentSelection;
+ (id)currentSelection;

@end
8 changes: 8 additions & 0 deletions Quicksilver/Code-QuickStepCore/QSGlobalSelectionProvider.m
Expand Up @@ -97,6 +97,14 @@ - (void)invokeService {

@end

@interface QSGlobalSelectionProvider ()

@property (assign) NSTimeInterval failDate;
@property (retain) NSDictionary *currentAppSelectionProxyInfo;
@property (retain) id currentAppSelectionProxyProvider;

@end

@implementation QSGlobalSelectionProvider

- (id)init
Expand Down
4 changes: 3 additions & 1 deletion Quicksilver/PlugIns-Main/QSCorePlugIn/Code/QSTextSource.m
Expand Up @@ -54,7 +54,9 @@ - (QSObject *)speakText:(QSObject *)dObject {
- (QSObject *)typeObject:(QSObject *)dObject {
// NSLog( AsciiToKeyCode(&ttable, "m") {
// short AsciiToKeyCode(Ascii2KeyCodeTable *ttable, short asciiCode) {
[self typeString:[dObject stringValue]];
for (QSObject *obj in dObject.splitObjects) {
[self typeString:[obj stringValue]];
}
return nil;
}

Expand Down