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 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409
|
/** <title>NSPopUpButtonCell</title>
Copyright (C) 1999 Free Software Foundation, Inc.
Author: Fred Kiefer <FredKiefer@gmx.de>
Date: Jul 2003
Author: Michael Hanni <mhanni@sprintmail.com>
Date: 1999
This file is part of the GNUstep GUI Library.
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; see the file COPYING.LIB.
If not, see <http://www.gnu.org/licenses/> or write to the
Free Software Foundation, 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#import "config.h"
#import <Foundation/NSNotification.h>
#import <Foundation/NSValue.h>
#import "AppKit/NSApplication.h"
#import "AppKit/NSEvent.h"
#import "AppKit/NSGraphics.h"
#import "AppKit/NSImage.h"
#import "AppKit/NSKeyValueBinding.h"
#import "AppKit/NSMenu.h"
#import "AppKit/NSMenuView.h"
#import "AppKit/NSPopUpButton.h"
#import "AppKit/NSPopUpButtonCell.h"
#import "AppKit/NSWindow.h"
#import "GNUstepGUI/GSTheme.h"
#import "GSBindingHelpers.h"
/* The image to use in a specific popupbutton depends on type and
* preferred edge; that is, _pbc_image[0] if it is a
* popup menu, _pbc_image[1] if it is a pulls down list pointing down,
* and so on. */
static NSImage *_pbc_image[5];
@interface NSButtonCell (Private)
- (GSThemeControlState) themeControlState;
@end
@interface NSPopUpButtonCell (CocoaExtensions)
- (void) _popUpItemAction: (id)sender;
@end
@implementation NSPopUpButtonCell
+ (void) initialize
{
if (self == [NSPopUpButtonCell class])
{
[self setVersion: 3];
ASSIGN(_pbc_image[0], [NSImage imageNamed: @"common_Nibble"]);
ASSIGN(_pbc_image[1], [NSImage imageNamed: @"common_3DArrowDown"]);
ASSIGN(_pbc_image[2], [NSImage imageNamed: @"common_3DArrowRight"]);
ASSIGN(_pbc_image[3], [NSImage imageNamed: @"common_3DArrowUp"]);
ASSIGN(_pbc_image[4], [NSImage imageNamed: @"common_3DArrowLeft"]);
}
}
+ (BOOL) prefersTrackingUntilMouseUp
{
return YES;
}
+ (NSFocusRingType) defaultFocusRingType
{
return NSFocusRingTypeDefault;
}
// Initialization
/**
* Initialize a blank cell.
*/
- (id) init
{
return [self initTextCell: @"" pullsDown: NO];
}
/**
* Initialize with stringValue.
*/
- (id) initTextCell: (NSString *)stringValue
{
return [self initTextCell: stringValue pullsDown: NO];
}
/*
* Helper method should be overriden by Gorm
*/
- (void)_initMenu
{
NSMenu *menu;
menu = [[NSMenu alloc] initWithTitle: @""];
[self setMenu: menu];
RELEASE(menu);
}
/**
* Initialize with stringValue and pullDown. If pullDown is YES, the
* reciever will be a pulldown button.
*/
- (id) initTextCell: (NSString *)stringValue
pullsDown: (BOOL)flag
{
self = [super initTextCell: stringValue];
if (!self)
return nil;
[self _initMenu];
[self setPullsDown: flag];
_pbcFlags.usesItemFromMenu = YES;
[self setPreferredEdge: NSMaxYEdge];
[self setArrowPosition: NSPopUpArrowAtCenter];
if ([stringValue length] > 0)
{
[self addItemWithTitle: stringValue];
}
return self;
}
- (void) dealloc
{
/*
* The popup must be closed here, just in case the cell goes away
* while the popup is still displayed. In that case the notification
* center would still send notifications to the deallocated cell.
*/
if ([[_menu window] isVisible])
{
[self dismissPopUp];
}
/*
* We don't use methods here to clean up the selected item, the menu
* item and the menu as these methods internally update the menu,
* which tries to access the target of the menu item (or of this cell).
* When the popup is relases this target may already have been freed,
* so the local reference to it is invalid and will result in a
* segmentation fault.
*/
if (_menu != nil)
{
NSNotificationCenter *nc = [NSNotificationCenter defaultCenter];
[nc removeObserver: self name: nil object: _menu];
}
_selectedItem = nil;
[super dealloc];
}
// Getters and setters.
/**
* Set the menu for the popup.
*/
- (void) setMenu: (NSMenu *)menu
{
NSNotificationCenter *nc = [NSNotificationCenter defaultCenter];
if (_menu == menu)
{
return;
}
if (_menu != nil)
{
[_menu _setOwnedByPopUp: nil];
[nc removeObserver: self
name: nil
object: _menu];
}
ASSIGN(_menu, menu);
if (_menu != nil)
{
[_menu _setOwnedByPopUp: self];
/* We need to set the menu view so we trigger the special case
* popupbutton code in super class NSMenuItemCell
*/
[self setMenuView: [_menu menuRepresentation]];
[nc addObserver: self
selector: @selector(synchronizeTitleAndSelectedItem)
name: NSMenuDidAddItemNotification
object: _menu];
[nc addObserver: self
selector: @selector(synchronizeTitleAndSelectedItem)
name: NSMenuDidRemoveItemNotification
object: _menu];
[nc addObserver: self
selector: @selector(synchronizeTitleAndSelectedItem)
name: NSMenuDidChangeItemNotification
object: _menu];
}
else
{
[self setMenuView: nil];
}
// FIXME: Select the first or last item?
[self selectItemAtIndex: [_menu numberOfItems] - 1];
[self synchronizeTitleAndSelectedItem];
}
- (void)setMenuView: (NSMenuView *)aMenuView
{
// NB Don't call NSMenuItemCell's implementation here because it also
// changes various items of the receiver, which is reasonable for a
// menu item cell that is part of a menu, but not for a pop up button
// cell.
_menuView = aMenuView;
}
/**
* Return the menu for the popup.
*/
- (NSMenu *) menu
{
return _menu;
}
/**
* Set the pull-down state
*/
- (void) setPullsDown: (BOOL)flag
{
NSMenuItem *item = _menuItem;
[self setMenuItem: nil];
if (flag && !_pbcFlags.pullsDown
&& _pbcFlags.altersStateOfSelectedItem)
{
[[self selectedItem] setState: NSOffState];
}
_pbcFlags.pullsDown = flag;
[self setMenuItem: item];
[self synchronizeTitleAndSelectedItem];
}
/**
* Returns YES, if this is a pull-down
*/
- (BOOL) pullsDown
{
return _pbcFlags.pullsDown;
}
/**
* Set to YES, if the items are to be autoenabled.
*/
- (void) setAutoenablesItems: (BOOL)flag
{
[_menu setAutoenablesItems: flag];
}
/**
* Returns YES, if the items are autoenabled.
*/
- (BOOL) autoenablesItems
{
return [_menu autoenablesItems];
}
/**
* Set the preferred edge as described by edge. This is used
* to determine the edge which will open the popup when the screen
* is small.
*/
- (void) setPreferredEdge: (NSRectEdge)preferredEdge
{
_pbcFlags.preferredEdge = preferredEdge;
}
/**
* Return the preferred edge.
*/
- (NSRectEdge) preferredEdge
{
return _pbcFlags.preferredEdge;
}
/**
* Set to YES, if the reciever should use a menu item for its title. YES
* is the default.
*/
- (void) setUsesItemFromMenu: (BOOL)flag
{
if (_pbcFlags.usesItemFromMenu != flag)
{
_pbcFlags.usesItemFromMenu = flag;
if (!flag)
{
NSMenuItem *anItem;
anItem = [[NSMenuItem alloc] initWithTitle: [self title]
action: NULL
keyEquivalent: nil];
[self setMenuItem: anItem];
RELEASE(anItem);
}
}
}
/**
* Returns YES, if the reciever uses a menu item for its title.
*/
- (BOOL) usesItemFromMenu
{
return _pbcFlags.usesItemFromMenu;
}
/**
* Return YES, if the reciever changes the state of the item chosen by
* the user.
*/
- (void) setAltersStateOfSelectedItem: (BOOL)flag
{
id <NSMenuItem> selectedItem = [self selectedItem];
if (flag)
{
[selectedItem setState: NSOnState];
}
else
{
[selectedItem setState: NSOffState];
}
_pbcFlags.altersStateOfSelectedItem = flag;
}
/**
* Return YES, if the reciever changes the state of the item chosen by
* the user.
*/
- (BOOL) altersStateOfSelectedItem
{
return _pbcFlags.altersStateOfSelectedItem;
}
/**
* Returns the current arrow position of the reciever.
*/
- (NSPopUpArrowPosition) arrowPosition
{
return _pbcFlags.arrowPosition;
}
/**
* Sets the current arrow position of the reciever.
*/
- (void) setArrowPosition: (NSPopUpArrowPosition)pos
{
_pbcFlags.arrowPosition = pos;
}
// Item management
/**
* Add an item to the popup with title.
*/
- (void) addItemWithTitle: (NSString *)title
{
[self insertItemWithTitle: title
atIndex: [_menu numberOfItems]];
}
/**
* Add a number of items to the reciever using the provided itemTitles array.
*/
- (void) addItemsWithTitles: (NSArray *)titles
{
unsigned c = [titles count];
unsigned i;
for (i = 0; i < c; i++)
{
[self addItemWithTitle: [titles objectAtIndex: i]];
}
}
/**
* Adds an item with the given title at index. If an item already exists at
* index, it, and all items after it are advanced one position. Index needs
* to be within the valid range for the array of items in the popup button.
*/
- (void) insertItemWithTitle: (NSString *)title atIndex: (NSInteger)index
{
id <NSMenuItem> anItem;
NSInteger i, count;
i = [self indexOfItemWithTitle: title];
if (-1 != i)
{
[self removeItemAtIndex: i];
}
count = [_menu numberOfItems];
if (index < 0)
index = 0;
if (index > count)
index = count;
anItem = [_menu insertItemWithTitle: title
action: NULL
keyEquivalent: @""
atIndex: index];
/* Disable showing the On/Off/Mixed state. We change the state of
menu items when selected, according to the doc, but we don't want
it to appear on the screen. */
[anItem setOnStateImage: nil];
[anItem setMixedStateImage: nil];
// FIXME: The documentation is unclear what to set here.
//[anItem setAction: [self action]];
//[anItem setTarget: [self target]];
// Or
[anItem setAction: @selector(_popUpItemAction:)];
[anItem setTarget: self];
// Select the new item if there isn't any selection.
if (_selectedItem == nil)
{
[self selectItem: anItem];
}
}
/**
* Remove a given item based on its title.
*/
- (void) removeItemWithTitle: (NSString *)title
{
[self removeItemAtIndex: [self indexOfItemWithTitle: title]];
}
/**
* Remove a given item based on its index, must be a valid index within the
* range for the item array of this popup.
*/
- (void) removeItemAtIndex: (NSInteger)index
{
if (index == [self indexOfSelectedItem])
{
[self selectItem: nil];
}
[_menu removeItemAtIndex: index];
}
/**
* Purges all items from the popup.
*/
- (void) removeAllItems
{
[self selectItem: nil];
while ([_menu numberOfItems] > 0)
{
[_menu removeItemAtIndex: 0];
}
}
// Referencing items...
/**
* Item array of the reciever.
*/
- (NSArray *) itemArray
{
return [_menu itemArray];
}
/**
* Number of items in the reciever.
*/
- (NSInteger) numberOfItems
{
return [_menu numberOfItems];
}
/**
* Return the index of item in the item array of the reciever.
*/
- (NSInteger) indexOfItem: (id <NSMenuItem>)item
{
return [_menu indexOfItem: item];
}
/**
* Return index of the item with the given title.
*/
- (NSInteger) indexOfItemWithTitle: (NSString *)title
{
return [_menu indexOfItemWithTitle: title];
}
/**
* Return index of the item with a tag equal to aTag.
*/
- (NSInteger) indexOfItemWithTag: (NSInteger)tag
{
return [_menu indexOfItemWithTag: tag];
}
/**
* Index of the item whose menu item's representedObject is equal to obj.
*/
- (NSInteger) indexOfItemWithRepresentedObject: (id)obj
{
return [_menu indexOfItemWithRepresentedObject: obj];
}
/**
* Index of the item in the reciever whose target and action
* are equal to aTarget and actionSelector.
*/
- (NSInteger) indexOfItemWithTarget: (id)aTarget andAction: (SEL)actionSelector
{
return [_menu indexOfItemWithTarget: aTarget andAction: actionSelector];
}
/**
* Return the item at index.
*/
- (id <NSMenuItem>) itemAtIndex: (NSInteger)index
{
if ((index >= 0) && (index < [_menu numberOfItems]))
{
return [_menu itemAtIndex: index];
}
else
{
return nil;
}
}
/**
* Return the item with title.
*/
- (id <NSMenuItem>) itemWithTitle: (NSString *)title
{
return [_menu itemWithTitle: title];
}
/**
* Return the item listed last in the reciever.
*/
- (id <NSMenuItem>) lastItem
{
NSInteger end = [_menu numberOfItems] - 1;
if (end < 0)
return nil;
return [_menu itemAtIndex: end];
}
/*
The Cocoa specification has this method as:
- (id <NSCopying>) objectValue
But this gives a conflict with the NSCell declaration of this method,
which is:
- (id) objectValue
*/
- (id <NSCopying>) objectValue
{
return [NSNumber numberWithInt: [self indexOfSelectedItem]];
}
- (void) setObjectValue: (id)object
{
if ([object respondsToSelector: @selector(intValue)])
{
int i = [object intValue];
[self selectItemAtIndex: i];
[self synchronizeTitleAndSelectedItem];
}
}
- (NSImage *) _currentArrowImage
{
if (_pbcFlags.pullsDown)
{
if (_pbcFlags.arrowPosition == NSPopUpNoArrow)
{
return nil;
}
if (_pbcFlags.preferredEdge == NSMaxYEdge)
{
return _pbc_image[1];
}
else if (_pbcFlags.preferredEdge == NSMaxXEdge)
{
return _pbc_image[2];
}
else if (_pbcFlags.preferredEdge == NSMinYEdge)
{
return _pbc_image[3];
}
else if (_pbcFlags.preferredEdge == NSMinXEdge)
{
return _pbc_image[4];
}
else
{
return _pbc_image[1];
}
}
else
{
return _pbc_image[0];
}
}
- (void) setImage: (NSImage *)anImage
{
// Do nothing as the image is determined by the current item
}
- (void) setMenuItem: (NSMenuItem *)item
{
NSImage *image;
if (_menuItem == item)
return;
image = [self _currentArrowImage];
if ([_menuItem image] == image)
{
[_menuItem setImage: nil];
}
//[super setMenuItem: item];
ASSIGN(_menuItem, item);
if ([_menuItem image] == nil)
{
[_menuItem setImage: image];
}
}
- (void) selectItem: (id <NSMenuItem>)item
{
id<NSMenuItem> oldSelectedItem = _selectedItem;
if (_selectedItem == item)
{
// pull-down should set highlighted item even when selection is unchanged
if (_pbcFlags.pullsDown)
[[_menu menuRepresentation] setHighlightedItemIndex:
[_menu indexOfItem: _selectedItem]];
return;
}
if (_selectedItem != nil)
{
if (_pbcFlags.altersStateOfSelectedItem)
{
[_selectedItem setState: NSOffState];
}
}
_selectedItem = item;
/* Set the item in the menu */
/* Note: Must do this before changing the state of the selected item, since
* the change will recursively invoke synchronizeTitleAndSelectedItem, which
* otherwise would select the old item again */
[[_menu menuRepresentation] setHighlightedItemIndex:
[_menu indexOfItem: _selectedItem]];
if (_selectedItem != nil)
{
if (_pbcFlags.altersStateOfSelectedItem)
{
[_selectedItem setState: NSOnState];
}
}
if (oldSelectedItem)
{
[[_menu menuRepresentation] setNeedsDisplayForItemAtIndex:
[_menu indexOfItem: oldSelectedItem]];
}
}
- (void) selectItemAtIndex: (NSInteger)index
{
id <NSMenuItem> anItem;
if (index < 0)
anItem = nil;
else
anItem = [self itemAtIndex: index];
[self selectItem: anItem];
}
- (void) selectItemWithTitle: (NSString *)title
{
id <NSMenuItem> anItem = [self itemWithTitle: title];
[self selectItem: anItem];
}
- (NSString *)title
{
id <NSMenuItem> selectedItem;
if (!_pbcFlags.usesItemFromMenu)
{
selectedItem = _menuItem;
}
else if (_pbcFlags.pullsDown)
{
if ([_menu numberOfItems] == 0)
{
selectedItem = _menuItem;
}
else
{
selectedItem = [_menu itemAtIndex: 0];
}
}
else
{
selectedItem = [self selectedItem];
}
return [selectedItem title];
}
- (void) setTitle: (NSString *)aString
{
id <NSMenuItem> anItem;
if (!_pbcFlags.usesItemFromMenu)
{
[_menuItem setTitle: aString];
return;
}
else if (_pbcFlags.pullsDown)
{
if ([_menu numberOfItems] == 0)
{
anItem = nil;
}
else
{
anItem = [_menu itemAtIndex: 0];
[anItem setTitle: aString];
}
}
else
{
anItem = [_menu itemWithTitle: aString];
if (anItem == nil)
{
[self addItemWithTitle: aString];
anItem = [_menu itemWithTitle: aString];
}
}
[self selectItem: anItem];
}
- (NSString *)stringValue
{
return [self titleOfSelectedItem];
}
- (id <NSMenuItem>) selectedItem
{
return _selectedItem;
}
- (id) representedObject
{
return [[self selectedItem] representedObject];
}
- (void) setRepresentedObject: (id)object
{
[[self selectedItem] setRepresentedObject: object];
}
- (NSInteger) indexOfSelectedItem
{
return [_menu indexOfItem: [self selectedItem]];
}
- (void) synchronizeTitleAndSelectedItem
{
NSInteger index;
if (!_pbcFlags.usesItemFromMenu)
return;
if ([_menu numberOfItems] == 0)
{
index = -1;
}
else if (_pbcFlags.pullsDown)
{
index = 0;
}
else
{
index = [[_menu menuRepresentation] highlightedItemIndex];
if (index < 0)
{
// If no item is highighted, display the selected one, if there is one.
index = [self indexOfSelectedItem];
}
else
{
// Selected the highlighted item
[self selectItemAtIndex: index];
}
}
if ((index >= 0) && ([_menu numberOfItems] > index))
{
NSMenuItem *anItem;
// This conversion is needed as [setMenuItem:] expects an NSMenuItem
anItem = (NSMenuItem *)[_menu itemAtIndex: index];
[self setMenuItem: anItem];
}
else
{
[self setMenuItem: nil];
}
if (_control_view)
if ([_control_view isKindOfClass: [NSControl class]])
[(NSControl *)_control_view updateCell: self];
}
// Title management
/**
* Set item title at the given index in the reciever.
*/
- (NSString *) itemTitleAtIndex: (NSInteger)index
{
return [[self itemAtIndex: index] title];
}
/**
* Returns an array containing all of the current item titles.
*/
- (NSArray *) itemTitles
{
unsigned count = [_menu numberOfItems];
id items[count];
unsigned i;
[[_menu itemArray] getObjects: items];
for (i = 0; i < count; i++)
{
items[i] = [items[i] title];
}
return [NSArray arrayWithObjects: items count: count];
}
/**
* Returns the title of the currently selected item in the reciever.
*/
- (NSString *) titleOfSelectedItem
{
id <NSMenuItem> item = [self selectedItem];
if (item != nil)
return [item title];
else
return @"";
}
/**
* Attach popup
*/
- (void) attachPopUpWithFrame: (NSRect)cellFrame
inView: (NSView *)controlView
{
NSRectEdge preferredEdge = _pbcFlags.preferredEdge;
NSNotificationCenter *nc = [NSNotificationCenter defaultCenter];
NSWindow *cvWin = [controlView window];
NSMenuView *mr = [_menu menuRepresentation];
NSInteger selectedItem;
[nc postNotificationName: NSPopUpButtonCellWillPopUpNotification
object: self];
[nc postNotificationName: NSPopUpButtonWillPopUpNotification
object: controlView];
// Convert to Screen Coordinates
cellFrame = [controlView convertRect: cellFrame toView: nil];
cellFrame.origin = [cvWin convertBaseToScreen: cellFrame.origin];
if (_pbcFlags.pullsDown)
selectedItem = -1;
else
{
selectedItem = [self indexOfSelectedItem];
if (selectedItem == -1)
{
selectedItem = 0;
}
}
if (selectedItem > 0)
{
[mr setHighlightedItemIndex: selectedItem];
}
if ([controlView isFlipped])
{
if (preferredEdge == NSMinYEdge)
{
preferredEdge = NSMaxYEdge;
}
else if (preferredEdge == NSMaxYEdge)
{
preferredEdge = NSMinYEdge;
}
}
// display the menu item...
[[GSTheme theme] displayPopUpMenu: mr
withCellFrame: cellFrame
controlViewWindow: cvWin
preferredEdge: preferredEdge
selectedItem: selectedItem];
[nc addObserver: self
selector: @selector(_handleNotification:)
name: NSMenuDidSendActionNotification
object: _menu];
}
/**
* Dismiss the reciever.
*/
- (void) dismissPopUp
{
NSNotificationCenter *nc = [NSNotificationCenter defaultCenter];
NSMenuView *mr = [_menu menuRepresentation];
NSWindow *mWin;
[nc removeObserver: self
name: NSMenuDidSendActionNotification
object: _menu];
[_menu close];
// remove from main window
mWin = [mr window];
[[mWin parentWindow] removeChildWindow: mWin];
}
/* Private method handles all cases after doing a selection from
the popup menu. Especially the obscure case where the user uses the
keyboard to open a popup, but subsequently uses the mouse to select
an item. We'll never know this was done (and thus cannot dismiss
the popUp) without getting this notification */
- (void) _handleNotification: (NSNotification*)aNotification
{
NSString *name = [aNotification name];
if ([name isEqual: NSMenuDidSendActionNotification] == YES)
{
[self dismissPopUp];
[self synchronizeTitleAndSelectedItem];
}
}
- (BOOL) trackMouse: (NSEvent *)theEvent
inRect: (NSRect)cellFrame
ofView: (NSView *)controlView
untilMouseUp: (BOOL)untilMouseUp
{
NSMenuView *mr = [[self menu] menuRepresentation];
NSWindow *menuWindow = [mr window];
NSEvent *e;
NSPoint p;
if ([self isEnabled] == NO)
return NO;
if ([[self menu] numberOfItems] == 0)
{
NSBeep ();
return NO;
}
// Attach the popUp
[self attachPopUpWithFrame: cellFrame
inView: controlView];
p = [[controlView window] convertBaseToScreen: [theEvent locationInWindow]];
p = [menuWindow convertScreenToBase: p];
// Process events; we start menu events processing by converting
// this event to the menu window, and sending it there.
e = [NSEvent mouseEventWithType: [theEvent type]
location: p
modifierFlags: [theEvent modifierFlags]
timestamp: [theEvent timestamp]
windowNumber: [menuWindow windowNumber]
context: [theEvent context]
eventNumber: [theEvent eventNumber]
clickCount: [theEvent clickCount]
pressure: [theEvent pressure]];
// Send the event directly to the popup window, as it may not be located
// at the event position.
[mr mouseDown: e];
// End of mouse tracking here -- dismiss popup
// No synchronization needed here
if ([[_menu window] isVisible])
{
[self dismissPopUp];
return NO;
}
return YES;
}
/**
* Perform the click operation with the given frame and controlView.
*/
- (void) performClickWithFrame: (NSRect)frame inView: (NSView *)controlView
{
[super performClickWithFrame: frame inView: controlView];
[self attachPopUpWithFrame: frame inView: controlView];
}
/*
* Override the implementation in NSMenuItemCell to behave the same
* as superclass NSButtonCell's implementation, since our direct
* superclass NSMenuItemCell has special menu-specific drawing.
*/
- (void) drawBorderAndBackgroundWithFrame: (NSRect)cellFrame
inView: (NSView *)controlView
{
[[GSTheme theme] drawButton: cellFrame
in: self
view: controlView
style: _bezel_style
state: [self themeControlState]];
}
/*
* This drawing uses the same code that is used to draw cells in the menu.
*/
- (void) drawInteriorWithFrame: (NSRect)cellFrame
inView: (NSView*)controlView
{
BOOL new = NO;
if ([self menuItem] == nil)
{
NSMenuItem *anItem;
/*
* Create a temporary NSMenuItemCell to at least draw our control,
* if items array is empty.
*/
anItem = [NSMenuItem new];
[anItem setTitle: [self title]];
/* We need this menu item because NSMenuItemCell gets its contents
* from the menuItem not from what is set in the cell */
[self setMenuItem: anItem];
RELEASE(anItem);
new = YES;
}
/* We need to calc our size to get images placed correctly */
[self calcSize];
[[GSTheme theme] drawPopUpButtonCellInteriorWithFrame: cellFrame
withCell: self
inView: controlView];
[super drawInteriorWithFrame: cellFrame inView: controlView];
/* Unset the item to restore balance if a new was created */
if (new)
{
[self setMenuItem: nil];
}
}
/* FIXME: this method needs to be rewritten to be something like
* NSMenuView's sizeToFit. That way if you call [NSPopUpButton sizeToFit];
* you will get the absolutely correct cellSize.
* Not sure if this is true. Maybe the popup should only use the size
* of the current title, at least, when usesItemFromMenu is false.
*/
- (NSSize) cellSize
{
NSSize s;
NSSize imageSize;
NSSize titleSize;
NSInteger i, count;
NSString *title;
NSImage *image;
count = [_menu numberOfItems];
image = [self _currentArrowImage];
if (image)
imageSize = [image size];
else
imageSize = NSZeroSize;
s = NSMakeSize(0, imageSize.height);
if (count == 0)
{
title = [self title];
titleSize = [self _sizeText: title];
if (titleSize.width > s.width)
s.width = titleSize.width;
if (titleSize.height > s.height)
s.height = titleSize.height;
}
for (i = 0; i < count; i++)
{
title = [[_menu itemAtIndex: i] title];
titleSize = [self _sizeText: title];
if (titleSize.width > s.width)
s.width = titleSize.width;
if (titleSize.height > s.height)
s.height = titleSize.height;
}
s.width += imageSize.width;
s.width += 5; /* Left border to text (border included) */
s.width += 3; /* Text to Image */
s.width += 4; /* Right border to image (border included) */
/* (vertical) border: */
s.height += 2 * [[GSTheme theme] sizeForBorderType: NSBezelBorder].height;
/* Spacing between border and inside: */
s.height += 2 * 1;
s.width += 2 * 3;
return s;
}
- (void) setAction: (SEL)aSelector
{
[super setAction: aSelector];
[_menu update];
}
- (void) setTarget: (id)anObject
{
[super setTarget: anObject];
[_menu update];
}
//
// NSCoding protocol
//
- (void) encodeWithCoder: (NSCoder*)aCoder
{
[super encodeWithCoder: aCoder];
if ([aCoder allowsKeyedCoding])
{
[aCoder encodeBool: [self altersStateOfSelectedItem]
forKey: @"NSAltersState"];
[aCoder encodeBool: [self usesItemFromMenu]
forKey: @"NSUsesItemFromMenu"];
[aCoder encodeInt: [self arrowPosition]
forKey: @"NSArrowPosition"];
[aCoder encodeInt: [self preferredEdge]
forKey: @"NSPreferredEdge"];
[aCoder encodeInt: [self indexOfSelectedItem]
forKey: @"NSSelectedIndex"];
[aCoder encodeBool: [self pullsDown]
forKey: @"NSPullDown"];
// encode the menu, if present.
if (_menu != nil)
{
[aCoder encodeObject: _menu
forKey: @"NSMenu"];
}
}
else
{
int flag;
[aCoder encodeObject: _menu];
[aCoder encodeConditionalObject: [self selectedItem]];
flag = _pbcFlags.pullsDown;
[aCoder encodeValueOfObjCType: @encode(int) at: &flag];
flag = _pbcFlags.preferredEdge;
[aCoder encodeValueOfObjCType: @encode(int) at: &flag];
flag = _pbcFlags.usesItemFromMenu;
[aCoder encodeValueOfObjCType: @encode(int) at: &flag];
flag = _pbcFlags.altersStateOfSelectedItem;
[aCoder encodeValueOfObjCType: @encode(int) at: &flag];
flag = _pbcFlags.arrowPosition;
[aCoder encodeValueOfObjCType: @encode(int) at: &flag];
}
}
- (id) initWithCoder: (NSCoder*)aDecoder
{
NSMenu *menu;
self = [super initWithCoder: aDecoder];
if (!self)
return nil;
if ([aDecoder allowsKeyedCoding])
{
/* First decode menu, menu items must be available to set the selection */
menu = [aDecoder decodeObjectForKey: @"NSMenu"];
if (menu)
{
NSEnumerator *menuItemEnumerator;
NSMenuItem *menuItem;
[self setMenu: nil];
[self setMenu: menu];
// FIXME: This special handling is needed bacause the NSClassSwapper
// might have replaced the cell, but the items still refere to it.
menuItemEnumerator = [[menu itemArray] objectEnumerator];
while ((menuItem = [menuItemEnumerator nextObject]) != nil)
{
if (sel_isEqual([menuItem action], @selector(_popUpItemAction:))
&& ([menuItem target] != self))
{
[menuItem setTarget: self];
}
}
}
if ([aDecoder containsValueForKey: @"NSAltersState"])
{
BOOL alters = [aDecoder decodeBoolForKey: @"NSAltersState"];
[self setAltersStateOfSelectedItem: alters];
}
if ([aDecoder containsValueForKey: @"NSPullDown"])
{
BOOL pullDown = [aDecoder decodeBoolForKey: @"NSPullDown"];
[self setPullsDown: pullDown];
}
if ([aDecoder containsValueForKey: @"NSUsesItemFromMenu"])
{
BOOL usesItem = [aDecoder decodeBoolForKey: @"NSUsesItemFromMenu"];
[self setUsesItemFromMenu: usesItem];
}
if ([aDecoder containsValueForKey: @"NSArrowPosition"])
{
NSPopUpArrowPosition position = [aDecoder decodeIntForKey:
@"NSArrowPosition"];
[self setArrowPosition: position];
}
if ([aDecoder containsValueForKey: @"NSPreferredEdge"])
{
NSRectEdge edge = [aDecoder decodeIntForKey: @"NSPreferredEdge"];
[self setPreferredEdge: edge];
}
if ([aDecoder containsValueForKey: @"NSSelectedIndex"])
{
int selectedIdx = [aDecoder decodeIntForKey:
@"NSSelectedIndex"];
[self selectItemAtIndex: selectedIdx];
}
else
{
[self selectItemAtIndex: 0];
}
if ([aDecoder containsValueForKey: @"NSMenuItem"])
{
NSMenuItem *item = [aDecoder decodeObjectForKey: @"NSMenuItem"];
[self setMenuItem: item];
}
}
else
{
int flag;
id<NSMenuItem> selectedItem;
int version = [aDecoder versionForClassName:
@"NSPopUpButtonCell"];
menu = [aDecoder decodeObject];
/*
FIXME: This same ivar already gets set in NSCell initWithCoder,
but there it is used directly not via a method call. So here we first
unset it and than set it again as our setMenu: method tries to optimize
duplicate calls.
*/
[self setMenu: nil];
[self setMenu: menu];
selectedItem = [aDecoder decodeObject];
[aDecoder decodeValueOfObjCType: @encode(int) at: &flag];
_pbcFlags.pullsDown = flag;
[aDecoder decodeValueOfObjCType: @encode(int) at: &flag];
_pbcFlags.preferredEdge = flag;
[aDecoder decodeValueOfObjCType: @encode(int) at: &flag];
_pbcFlags.usesItemFromMenu = flag;
[aDecoder decodeValueOfObjCType: @encode(int) at: &flag];
_pbcFlags.altersStateOfSelectedItem = flag;
[aDecoder decodeValueOfObjCType: @encode(int) at: &flag];
_pbcFlags.arrowPosition = flag;
if (version < 2)
{
int i;
// Not the stored format did change but the interpretation of it.
// in version 1 most of the ivars were not used, so their values may
// be arbitray. We overwrite them with valid settings.
[self setPullsDown: _pbcFlags.pullsDown];
_pbcFlags.usesItemFromMenu = YES;
for (i = 0; i < [_menu numberOfItems]; i++)
{
id <NSMenuItem> anItem = [menu itemAtIndex: i];
[anItem setOnStateImage: nil];
[anItem setMixedStateImage: nil];
}
[self setEnabled: YES];
}
if (version < 3)
{
[self setPreferredEdge: NSMaxYEdge];
[self setArrowPosition: NSPopUpArrowAtCenter];
}
[self selectItem: selectedItem];
}
return self;
}
@end
@implementation NSPopUpButtonCell (CocoaExtensions)
/*
* The selector for this method gets used by menu items in Apple NIB files.
*/
- (void) _popUpItemAction: (id)sender
{
// first, if sender is one of our items, set it as our selected item
NSUInteger index = [_menu indexOfItem: sender];
if (index != NSNotFound)
[self selectItemAtIndex: index];
if (_control_view)
{
GSKeyValueBinding *theBinding;
theBinding = [GSKeyValueBinding getBinding: NSSelectedIndexBinding
forObject: _control_view];
if (theBinding != nil)
[theBinding reverseSetValueFor: NSSelectedIndexBinding];
theBinding = [GSKeyValueBinding getBinding: NSSelectedTagBinding
forObject: _control_view];
if (theBinding != nil)
[theBinding reverseSetValueFor: NSSelectedTagBinding];
theBinding = [GSKeyValueBinding getBinding: NSSelectedObjectBinding
forObject: _control_view];
if (theBinding != nil)
[theBinding reverseSetValueFor: NSSelectedObjectBinding];
}
[NSApp sendAction: [self action] to: [self target] from: _control_view];
}
@end
|