Skip to content

Commit

Permalink
shadow_size candidate_back_color
Browse files Browse the repository at this point in the history
  • Loading branch information
groverlynn committed May 24, 2024
1 parent b209906 commit c603520
Show file tree
Hide file tree
Showing 5 changed files with 132 additions and 80 deletions.
4 changes: 2 additions & 2 deletions Squirrel.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -653,7 +653,7 @@
CODE_SIGN_IDENTITY = "-";
COMBINE_HIDPI_IMAGES = YES;
COPY_PHASE_STRIP = NO;
CURRENT_PROJECT_VERSION = 0.16.2u;
CURRENT_PROJECT_VERSION = 0.18.0u;
DEAD_CODE_STRIPPING = YES;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
Expand Down Expand Up @@ -709,7 +709,7 @@
CLANG_ENABLE_OBJC_ARC = YES;
CODE_SIGN_IDENTITY = "-";
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 0.16.2u;
CURRENT_PROJECT_VERSION = 0.18.0u;
DEAD_CODE_STRIPPING = YES;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
Expand Down
14 changes: 7 additions & 7 deletions SquirrelConfig.hh
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@
__attribute__((objc_direct_members))
@interface SquirrelOptionSwitcher : NSObject

@property(nonatomic, strong, readonly, nonnull) NSString* schemaId;
@property(nonatomic, strong, readonly, nonnull) NSString* currentScriptVariant;
@property(nonatomic, strong, readonly, nonnull) NSSet<NSString*>* optionNames;
@property(nonatomic, strong, readonly, nonnull) NSSet<NSString*>* optionStates;
@property(nonatomic, strong, readonly, nonnull)
@property(nonatomic, readonly, strong, nonnull) NSString* schemaId;
@property(nonatomic, readonly, strong, nonnull) NSString* currentScriptVariant;
@property(nonatomic, readonly, strong, nonnull) NSSet<NSString*>* optionNames;
@property(nonatomic, readonly, strong, nonnull) NSSet<NSString*>* optionStates;
@property(nonatomic, readonly, strong, nonnull)
NSDictionary<NSString*, NSString*>* scriptVariantOptions;
@property(nonatomic, strong, readonly, nonnull)
@property(nonatomic, readonly, strong, nonnull)
NSMutableDictionary<NSString*, NSString*>* switcher;
@property(nonatomic, strong, readonly, nonnull)
@property(nonatomic, readonly, strong, nonnull)
NSDictionary<NSString*, NSOrderedSet<NSString*>*>* optionGroups;

- (instancetype _Nonnull)
Expand Down
8 changes: 4 additions & 4 deletions SquirrelInputController.hh
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@ typedef NS_ENUM(NSUInteger, SquirrelIndex) {
kVoidSymbol = 0xffffff // XK_VoidSymbol
};

@property(nonatomic, weak, readonly, nullable, direct, class)
@property(nonatomic, readonly, weak, nullable, direct, class)
SquirrelInputController* currentController;
@property(nonatomic, strong, readonly, nonnull)
@property(nonatomic, readonly, strong, nonnull)
NSAppearance* viewEffectiveAppearance API_AVAILABLE(macos(10.14));
@property(nonatomic, strong, readonly, nonnull, direct)
@property(nonatomic, readonly, strong, nonnull, direct)
NSMutableArray<NSString*>* candidateTexts;
@property(nonatomic, strong, readonly, nonnull, direct)
@property(nonatomic, readonly, strong, nonnull, direct)
NSMutableArray<NSString*>* candidateComments;

- (void)moveCursor:(NSUInteger)cursorPosition
Expand Down
4 changes: 2 additions & 2 deletions SquirrelPanel.hh
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@
@property(nonatomic, direct) NSUInteger sectionNum;
// position of the text input I-beam cursor on screen.
@property(nonatomic, direct) NSRect IbeamRect;
@property(nonatomic, strong, readonly, nullable) NSScreen* screen;
@property(nonatomic, readonly, strong, nullable) NSScreen* screen;
// Status message before pop-up is displayed; nil before normal panel is
// displayed
@property(nonatomic, strong, readonly, nullable, direct)
@property(nonatomic, readonly, strong, nullable, direct)
NSString* statusMessage;
// Store switch options that change style (color theme) settings
@property(nonatomic, strong, nonnull, direct)
Expand Down
Loading

0 comments on commit c603520

Please sign in to comment.