1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 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
|
/* GSStandardColorPicker.m
Copyright (C) 2001 Free Software Foundation, Inc.
Author: Fred Kiefer <FredKiefer@gmx.de>
Date: Febuary 2001
Author: Alexander Malmberg <alexander@malmberg.org>
Date: May 2002
This file is part of GNUstep.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include <Foundation/Foundation.h>
#include <AppKit/AppKit.h>
#include <GNUstepGUI/GSVbox.h>
#include <GNUstepGUI/GSHbox.h>
#include "GSRGBColorPicker.h"
#include "GSHSBColorPicker.h"
#include "GSCMYKColorPicker.h"
#include "GSGrayColorPicker.h"
@interface GSStandardColorPicker: NSColorPicker <NSColorPickingCustom>
{
GSTable *baseView;
NSBox *pickerBox;
NSButtonCell *imageCell;
NSMatrix *pickerMatrix;
NSMutableArray *pickers;
id<NSColorPickingCustom, NSColorPickingDefault> currentPicker;
}
- (void) loadViews;
- (void) _showNewPicker: (id) sender;
@end
@implementation GSStandardColorPicker
- (void) dealloc
{
RELEASE(pickers);
RELEASE(pickerBox);
RELEASE(pickerMatrix);
RELEASE(baseView);
[super dealloc];
}
- (id)initWithPickerMask:(int)aMask
colorPanel:(NSColorPanel *)colorPanel
{
if (aMask & (NSColorPanelRGBModeMask | NSColorPanelHSBModeMask |
NSColorPanelCMYKModeMask | NSColorPanelGrayModeMask))
{
NSColorPicker *picker;
pickers = [[NSMutableArray alloc] init];
picker = [[GSGrayColorPicker alloc] initWithPickerMask: aMask
colorPanel: colorPanel];
if (picker != nil)
{
[pickers addObject: picker];
RELEASE(picker);
}
picker = [[GSRGBColorPicker alloc] initWithPickerMask: aMask
colorPanel: colorPanel];
if (picker != nil)
{
[pickers addObject: picker];
RELEASE(picker);
}
picker = [[GSCMYKColorPicker alloc] initWithPickerMask: aMask
colorPanel: colorPanel];
if (picker != nil)
{
[pickers addObject: picker];
RELEASE(picker);
}
picker = [[GSHSBColorPicker alloc] initWithPickerMask: aMask
colorPanel: colorPanel];
if (picker != nil)
{
[pickers addObject: picker];
RELEASE(picker);
}
currentPicker = [pickers lastObject];
return [super initWithPickerMask: aMask
colorPanel: colorPanel];
}
RELEASE(self);
return nil;
}
- (int)currentMode
{
return [currentPicker currentMode];
}
- (void)setMode:(int)mode
{
int i, count;
if (mode == [self currentMode])
return;
count = [pickers count];
for (i = 0; i < count; i++)
{
if ([[pickers objectAtIndex: i] supportsMode: mode])
{
[pickerMatrix selectCellWithTag: i];
[self _showNewPicker: pickerMatrix];
[currentPicker setMode: mode];
break;
}
}
}
- (BOOL)supportsMode:(int)mode
{
return ((mode == NSGrayModeColorPanel) ||
(mode == NSRGBModeColorPanel) ||
(mode == NSCMYKModeColorPanel) ||
(mode == NSHSBModeColorPanel));
}
- (void)insertNewButtonImage:(NSImage *)newImage
in:(NSButtonCell *)newButtonCell
{
// Store the image button cell
imageCell = newButtonCell;
[super insertNewButtonImage: newImage
in: newButtonCell];
}
- (NSView *)provideNewView:(BOOL)initialRequest
{
if (initialRequest)
{
[self loadViews];
}
return baseView;
}
- (NSImage *)provideNewButtonImage
{
return [currentPicker provideNewButtonImage];
}
- (void)setColor:(NSColor *)color
{
[currentPicker setColor: color];
}
- (void) loadViews
{
NSEnumerator *enumerator;
id<NSColorPickingCustom, NSColorPickingDefault> picker;
NSButtonCell *cell;
NSMutableArray *cells = [NSMutableArray new];
int i, count;
// Initaliase all the sub pickers
enumerator = [pickers objectEnumerator];
while ((picker = [enumerator nextObject]) != nil)
[picker provideNewView: YES];
baseView = [[GSTable alloc] initWithNumberOfRows: 3 numberOfColumns: 1];
[baseView setAutoresizingMask: NSViewWidthSizable | NSViewHeightSizable];
[baseView setYResizingEnabled: NO forRow: 1];
[baseView setYResizingEnabled: NO forRow: 2];
// Prototype cell for the matrix
cell = [[NSButtonCell alloc] initImageCell: nil];
[cell setButtonType: NSOnOffButton];
[cell setBordered: YES];
pickerMatrix = [[NSMatrix alloc] initWithFrame: NSMakeRect(0,0,0,0)
mode: NSRadioModeMatrix
prototype: cell
numberOfRows: 0
numberOfColumns: 0];
RELEASE(cell);
[pickerMatrix setAutoresizingMask: (NSViewWidthSizable | NSViewHeightSizable)];
[pickerMatrix setIntercellSpacing: NSMakeSize(1, 0)];
[pickerMatrix setAutosizesCells: YES];
count = [pickers count];
for (i = 0; i < count; i++)
{
cell = [[pickerMatrix prototype] copy];
[cell setTag: i];
picker = [pickers objectAtIndex: i];
[picker insertNewButtonImage: [picker provideNewButtonImage] in: cell];
[cells addObject: cell];
RELEASE(cell);
}
[pickerMatrix addRowWithCells: cells];
RELEASE(cells);
[pickerMatrix setCellSize: NSMakeSize(1, 36)];
[pickerMatrix setTarget: self];
[pickerMatrix setAction: @selector(_showNewPicker:)];
pickerBox = [[NSBox alloc] init];
[pickerBox setAutoresizingMask: NSViewWidthSizable | NSViewHeightSizable];
[baseView putView: pickerBox
atRow: 0
column: 0
withMargins: 0];
[pickerBox setTitlePosition: NSNoTitle];
[pickerBox setBorderType: NSNoBorder];
[pickerBox setContentView: [currentPicker provideNewView: NO]];
[baseView putView: pickerMatrix
atRow: 1
column: 0
withMargins: 0];
{
NSBox *b = [[NSBox alloc] initWithFrame: NSMakeRect(0,0,0,2)];
[b setAutoresizingMask: NSViewWidthSizable];
[b setTitlePosition: NSNoTitle];
[b setBorderType: NSGrooveBorder];
[baseView putView: b
atRow: 2
column: 0
withMinXMargin: 0
maxXMargin: 0
minYMargin: 4
maxYMargin: 0];
DESTROY(b);
}
}
- (void) _showNewPicker: (id) sender
{
NSView *currentView = [currentPicker provideNewView: NO];
//NSLog(@"Old View size %@", NSStringFromRect([currentView frame]));
currentPicker = [pickers objectAtIndex: [sender selectedColumn]];
[currentPicker setColor: [_colorPanel color]];
//NSLog(@"Base View size %@", NSStringFromRect([baseView frame]));
/* [baseView putView: [currentPicker provideNewView: NO]
atRow: 0
column: 0
withMargins: 0];*/
[pickerBox setContentView: [currentPicker provideNewView: NO]];
currentView = [currentPicker provideNewView: NO];
//NSLog(@"New View size %@", NSStringFromRect([currentView frame]));
// Show the new image
[imageCell setImage: [[sender selectedCell] image]];
}
@end
#include "GSStandardColorPicker.h"
#include <GNUstepGUI/GSVbox.h>
#include <GNUstepGUI/GSHbox.h>
#define KNOB_WIDTH 6
@implementation GSColorSliderCell : NSSliderCell
-(void) _setColorSliderCellMode: (int)m
{
mode = m;
switch (mode)
{
case 0:
case 1:
case 2:
case 3:
case 10:
[_titleCell setTextColor: [NSColor whiteColor]];
break;
case 4:
case 5:
case 6:
case 7:
[_titleCell setTextColor: [NSColor blackColor]];
break;
}
[_titleCell setAlignment: NSLeftTextAlignment];
}
-(void) _setColorSliderCellValues: (float)a : (float)b : (float)c
{
values[0] = a;
values[1] = b;
values[2] = c;
if (mode == 8 || mode == 9)
{
if (c>0.7)
[_titleCell setTextColor: [NSColor blackColor]];
else
[_titleCell setTextColor: [NSColor whiteColor]];
}
}
- (NSRect) knobRectFlipped: (BOOL)flipped
{
NSPoint origin;
float floatValue = [self floatValue];
if (_isVertical && flipped)
{
floatValue = _maxValue + _minValue - floatValue;
}
floatValue = (floatValue - _minValue) / (_maxValue - _minValue);
origin = _trackRect.origin;
if (_isVertical == YES)
{
origin.y += (_trackRect.size.height - KNOB_WIDTH) * floatValue;
return NSMakeRect (origin.x, origin.y, _trackRect.size.width, KNOB_WIDTH);
}
else
{
origin.x += (_trackRect.size.width - KNOB_WIDTH) * floatValue;
return NSMakeRect (origin.x, origin.y, KNOB_WIDTH, _trackRect.size.height);
}
}
- (void) drawKnob: (NSRect)knobRect
{
[[NSColor blackColor] set];
NSDrawButton(knobRect, knobRect);
}
-(void) drawBarInside: (NSRect)r flipped: (BOOL)flipped
{
float i, f;
for (i = r.origin.x; i < r.origin.x + r.size.width; i += 1)
{
f = (0.5 + i) / r.size.width;
switch (mode)
{
case 0: PSsetgray(f); break;
case 1: PSsetrgbcolor(f, 0, 0); break;
case 2: PSsetrgbcolor(0, f, 0); break;
case 3: PSsetrgbcolor(0, 0, f); break;
case 4: PSsetcmykcolor(f, 0, 0, 0); break;
case 5: PSsetcmykcolor(0, f, 0, 0); break;
case 6: PSsetcmykcolor(0, 0, f, 0); break;
case 7: PSsetcmykcolor(0, 0, 0, f); break;
case 8: PSsethsbcolor(f, values[1], values[2]); break;
case 9: PSsethsbcolor(values[0], f, values[2]); break;
case 10: PSsethsbcolor(values[0], values[1], f); break;
}
if (i + 1 < r.origin.x + r.size.width)
PSrectfill(i, r.origin.y, 1, r.size.height);
else
PSrectfill(i, r.origin.y, r.size.width - i, r.size.height);
}
if (_isVertical == NO)
{
[_titleCell drawInteriorWithFrame: r inView: _control_view];
}
}
-(void) drawInteriorWithFrame: (NSRect)cellFrame inView: (NSView *)controlView
{
_isVertical = (cellFrame.size.height > cellFrame.size.width);
cellFrame = [self drawingRectForBounds: cellFrame];
cellFrame.origin.x -= 1;
cellFrame.origin.y -= 1;
cellFrame.size.width += 2;
cellFrame.size.height += 2;
[controlView lockFocus];
_trackRect = cellFrame;
[self drawBarInside: cellFrame flipped: [controlView isFlipped]];
[self drawKnob];
[controlView unlockFocus];
}
- (float) knobThickness
{
return KNOB_WIDTH;
}
@end
@implementation GSStandardCSColorPicker
- (void) dealloc
{
int i;
for (i = 0; i < numFields; i++)
{
RELEASE(sliders[i]);
RELEASE(fields[i]);
}
RELEASE(baseView);
[super dealloc];
}
- (int)currentMode
{
return currentMode;
}
- (BOOL)supportsMode:(int)mode
{
return currentMode == NSRGBModeColorPanel;
}
- (NSView *)provideNewView:(BOOL)initialRequest
{
if (initialRequest)
{
[self loadViews];
}
return baseView;
}
- (void)setColor:(NSColor *)color
{
[self subclassResponsibility: _cmd];
}
- (void) loadViews
{
int i;
baseView = [[GSTable alloc] initWithNumberOfRows: numFields + 2 numberOfColumns: 2];
/* keep a single resizable but empty row at the bottom so it sucks up any
extra space in the box that contains us */
for (i = 1; i < numFields + 2; i++)
[baseView setYResizingEnabled: NO forRow: i];
[baseView setXResizingEnabled: YES forColumn: 0];
[baseView setXResizingEnabled: NO forColumn: 1];
[baseView setAutoresizingMask: NSViewWidthSizable | NSViewMinYMargin];
for (i = 0; i < numFields; i++)
{
NSSlider *s;
s = sliders[i] = [[NSSlider alloc] initWithFrame: NSMakeRect(0, 0, 0, 16)];
[s setCell: [[GSColorSliderCell alloc] init]];
[s setContinuous: YES];
[s setMinValue: 0.0];
[s setTitle: names[i]];
[s setTarget: self];
[s setAction: @selector(sliderChanged:)];
[[s cell] setBezeled: YES];
[s setAutoresizingMask: NSViewWidthSizable];
[baseView putView: s
atRow: numFields - i
column: 0
withMinXMargin: 0
maxXMargin: 0
minYMargin: 0
maxYMargin: i?6:2];
}
if (maxValue)
{
NSTextField *tv;
GSHbox *hb=[[GSHbox alloc] init];
tv=[[NSTextField alloc] init];
[tv setStringValue: @"0"];
[tv setEditable: 0];
[tv setFont: [NSFont userFontOfSize: 10.0]];
[tv setTextColor: [NSColor darkGrayColor]];
[tv setDrawsBackground: NO];
[tv setBordered: NO];
[tv setSelectable: NO];
[tv setBezeled: NO];
[tv sizeToFit];
[tv setAutoresizingMask: NSViewMaxXMargin];
[hb addView: tv];
DESTROY(tv);
tv=[[NSTextField alloc] init];
[tv setIntValue: maxValue];
[tv setEditable: 0];
[tv setFont: [NSFont userFontOfSize: 10.0]];
[tv setTextColor: [NSColor darkGrayColor]];
[tv setDrawsBackground: NO];
[tv setBordered: NO];
[tv setSelectable: NO];
[tv setBezeled: NO];
[tv sizeToFit];
[tv setAutoresizingMask: NSViewMinXMargin];
[hb addView: tv];
DESTROY(tv);
[hb setAutoresizingMask: NSViewWidthSizable];
[baseView putView: hb
atRow: numFields + 1
column: 0
withMargins: 0];
DESTROY(hb);
}
else
{
NSTextField *tv;
NSView *v;
NSRect frame;
tv=[[NSTextField alloc] init];
[tv setStringValue: @"0"];
[tv setEditable: 0];
[tv setFont: [NSFont userFontOfSize: 10.0]];
[tv setTextColor: [NSColor darkGrayColor]];
[tv setDrawsBackground: NO];
[tv setBordered: NO];
[tv setSelectable: NO];
[tv setBezeled: NO];
[tv sizeToFit];
frame=[tv frame];
DESTROY(tv);
v = [[NSView alloc] initWithFrame: frame];
[baseView putView: v
atRow: numFields + 1
column: 0
withMargins: 0];
DESTROY(v);
}
for (i = 0; i < numFields; i++)
{
NSTextField *f;
f = fields[i] = [[NSTextField alloc] init];
[f setStringValue: @"255"]; /* just to get a good size */
[f setFont: [NSFont userFontOfSize: 10.0]];
[f sizeToFit];
[f setFrameSize: NSMakeSize([f frame].size.width * 1.5, [f frame].size.height)];
[f setDelegate: self];
[baseView putView: f
atRow: numFields - i
column: 1
withMinXMargin: 3
maxXMargin: 0
minYMargin: 0
maxYMargin: 0];
}
}
- (void) sliderChanged: (id) sender
{
int i;
if (updating)
return;
updating = YES;
for (i = 0; i <numFields; i++)
{
values[i] = [sliders[i] floatValue];
[fields[i] setIntValue: (int)values[i]];
}
[self _setColorFromValues];
updating = NO;
}
-(void) controlTextDidChange: (NSNotification *)n
{
int i;
if (updating)
return;
updating = YES;
for (i = 0; i <numFields; i++)
{
values[i] = [fields[i] floatValue];
[sliders[i] setIntValue: (int)values[i]];
}
[self _setColorFromValues];
updating = NO;
}
-(void) _valuesChanged
{
int i;
for (i = 0; i <numFields; i++)
{
[fields[i] setIntValue: (int)values[i]];
[sliders[i] setIntValue: (int)values[i]];
}
}
-(void) _setColorFromValues
{
[self subclassResponsibility: _cmd];
}
@end
|