Hello everyone!
I would like to ask your help with a specific problem I have.
I need to implement the following thing:
There is a control displaying numeric value. When you Double-Click on a control
small white window appears where you can enter the value, and when you press
enter the value wil
On Jan 2, 2012, at 6:02 AM, Dany Golubitsky wrote:
> I need to implement the following thing:
> There is a control displaying numeric value. When you Double-Click on a
> control small white window appears where you can enter the value, and when
> you press enter the value will be updated.
> You
Sorry Jens,
I read too quickly. The app is for the physical and engineering sciences, and
will perform a least squares fit of experimental data to different physical
models.The models for the experimental data will be in the plugins, and the
user will likely only need to the load a few of
Hi,
when returning from my detail view the list view is sized out of the blue.
in viewDidAppear I do this:
- (void)viewDidAppear:(BOOL)animated
{
[super viewDidAppear:animated];
if ([theSearchbar.text length]){
[theSearchbar becomeFirstResponder];
[self switchSearchbarInvi
Thank you!
As for field editor - can it appear and disappear during runtime? Indeed, I do
not familiar with this approach.
About beginSheetModalForWindow - indeed, I tried to do the following either:
[textField beginSheet:[textField window] ModalForWindow:[superView window]
modalDelegate:superV
I found the issue. The navigation bar was first shown and then removed, thus I
ended calculating a wrong size.
Thanks
On 02.01.2012, at 16:17, Alexander Reichstadt wrote:
> Hi,
>
> when returning from my detail view the list view is sized out of the blue.
>
> in viewDidAppear I do this:
> - (
At 9:47 AM -0500 1/2/12, Grandinetti Philip wrote:
So, I can't really define the static variable pointing to my library
in the plugin.It needs to be defined in the library that handles
all the SI units.
Hi Philip,
This is dusting off brain cells that I haven't used in awhile but,
assumin
On Jan 2, 2012, at 9:22 AM, Dany Golubitsky wrote:
> Thank you!
>
> As for field editor - can it appear and disappear during runtime? Indeed, I
> do not familiar with this approach.
"The field editor is a single NSTextView object that is shared among all the
controls in a single window, includ
Hi Steve,
You raise a fundamental issue that I admit I don't completely understand.
What are the differences between linking against a static library versus a
framework. If I turned all my static libraries into a framework would the
plugin see the static variables in the framework without h
Dear list,
I have an NSTextView subclass which I've set up to highlight matching words in
view. So if the user highlights a word, all matching words are highlighted. I'm
doing the highlighting using a temporary attribute on the layout manager:
NSBackgroundColorAttributeName.
In order for this
On Jan 2, 2012, at 7:52 AM, Grandinetti Philip wrote:
> You raise a fundamental issue that I admit I don't completely understand.
> What are the differences between linking against a static library versus a
> framework. If I turned all my static libraries into a framework would the
> plugi
On Jan 2, 2012, at 4:02 AM, Dany Golubitsky wrote:
> // Make the text field "in focus", and start an editing session on it
> [textField becomeFirstResponder];
-becomeFirstResponder is a notification method for when the responder becomes
first responder; it doesn't *make* it first responder. For
I'm trying to hide the cursor when in full-screen mode on Lion but the
CGDisplayHideCursor call immediately takes the display out of full-screen mode.
It doesn't matter which call comes first, I get the same result every time.
Here's the code:
- (void)applicationDidFinishLaunching:(NSNotificat
On Jan 2, 2012, at 10:30 AM, Michael Crawford wrote:
> I'm trying to hide the cursor when in full-screen mode on Lion but the
> CGDisplayHideCursor call immediately takes the display out of full-screen
> mode. It doesn't matter which call comes first, I get the same result every
> time.
Works
On Jan 2, 2012, at 10:20 AM, Martin Hewitson wrote:
> [[self layoutManager] removeTemporaryAttribute:NSBackgroundColorAttributeName
> forCharacterRange:visibleRange];
>
> This has the unfortunate side-effect of removing the red squiggly lines which
> indicate misspelled words.
Hmm. Works fine
Seth, don't run from inside Xcode. Start the app from the finder. I find that
in that instance, it goes to full screen and then immediately exits full screen.
Here is a trace:
1/2/12 1:51:21.428 PM JTVideoPlayer: -[JTVAppDelegate
window:willUseFullScreenPresentationOptions:]
1/2/12 1:51:21.42
Still works fine. Can you repeat it in a sample project that I can test?
On Jan 2, 2012, at 11:27 AM, Michael Crawford wrote:
> Seth, don't run from inside Xcode. Start the app from the finder. I find
> that in that instance, it goes to full screen and then immediately exits full
> screen
On Jan 1, 2012, at 8:44 PM, Vaibhao Mahore wrote:
> 2. I have tried with setting defaults for my application with
> ApplePressAndHoldEnabled being NO. I can even read defaults for my
> application using
> defaults read < my application bundle-identifier >
> Still I am unable to see "Press
On Jan 2, 2012, at 11:27 AM, Michael Crawford wrote:
> Seth, don't run from inside Xcode. Start the app from the finder. I find
> that in that instance, it goes to full screen and then immediately exits full
> screen.
Try launching with Shift held down to clear restorable window state.
--Ky
Are you making other modifications to temporary attributes? The spelling
indicator does use various temporary attributes, though not background color,
so (for example) clearing temporary attributes would interfere with it.
Douglas Davidson
On Jan 2, 2012, at 10:20 AM, Martin Hewitson wrote:
Yes, it seems I was mistaken. I also made a test app and can't reproduce the
problem. So it must be something else I'm doing with the textview that stops
the continuous spell checking from working.
Oh well, more digging to do.
Thanks for confirming!
Martin
On 2, Jan, 2012, at 08:07 PM, Seth
Thank you, Kyle. That works.
-Michael
On Jan 2, 2012, at 3:16 PM, Kyle Sluder wrote:
> On Jan 2, 2012, at 11:27 AM, Michael Crawford wrote:
>
>> Seth, don't run from inside Xcode. Start the app from the finder. I find
>> that in that instance, it goes to full screen and then immediately ex
Seth, I appreciate your offer to help out by testing some code. Now that Kyle
has identified what is going on, I'm looking into programmatically disabling or
overriding the window restoration behavior for my app.
-Michael
On Jan 2, 2012, at 4:44 PM, Michael Crawford wrote:
> Thank you, Kyle.
For the benefit of anyone else who is watching and also has limited experience
with some of the new Lion features, a call to [NSWindow setRestorable:] or
flipping a switch in the interface builder UI for the NSWindow instance,
handily solves the problem.
-Michael
On Jan 2, 2012, at 4:56 PM, Mi
If I create a child context of type NSMainQueueConcurrencyType such as:
context = [[NSManagedObjectContext alloc]
initWithConcurrencyType:NSMainQueueConcurrencyType];
[context setParentContext:mainContext];
do I need to call [context performBlock:^{ // some code }];
or can I just use th
Hi Jens,
Thanks for your patience. I'm getting a better understanding. Also, it
helped a bit reading through ...
http://developer.apple.com/library/mac/#documentation/developertools/conceptual/MachOTopics
and
http://developer.apple.com/library/mac/#documentation/DeveloperTools/Conceptual/Dyn
Hi all,
I am using below code to subclass NSTextField-
- (void)drawRect:(NSRect)dirtyRect
{
// black outline
NSRect blackOutlineFrame = NSMakeRect(0.0, 0.0, [self
bounds].size.width, [self bounds].size.height-1.0);
NSGradient *gradient = nil;
if ([NSApp isActive]) {
On Jan 2, 2012, at 10:35 PM, Devarshi Kulshreshtha wrote:
> First Problem: When a text field is selected, it is showing overlapping
> white edges over round corners as shown in below image:
That's the field editor drawing its background. Tweak it in
setUpFieldEditorAttributes:
--
Seth Willits
Dear list,
I want to check if a file extension is registered as a text file. So I made a
little category method on NSString like this:
- (BOOL)isText
{
BOOL fileIsText = NO;
CFStringRef fileExtension = (CFStringRef) self;
CFStringRef fileUTI =
UTTypeCreatePreferredIdentifierForTag(
29 matches
Mail list logo