1 /* 2 Open Tracker License 3 4 Terms and Conditions 5 6 Copyright (c) 1991-2000, Be Incorporated. All rights reserved. 7 8 Permission is hereby granted, free of charge, to any person obtaining a copy of 9 this software and associated documentation files (the "Software"), to deal in 10 the Software without restriction, including without limitation the rights to 11 use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies 12 of the Software, and to permit persons to whom the Software is furnished to do 13 so, subject to the following conditions: 14 15 The above copyright notice and this permission notice applies to all licensees 16 and shall be included in all copies or substantial portions of the Software. 17 18 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 19 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF TITLE, MERCHANTABILITY, 20 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 21 BE INCORPORATED BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN 22 AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN CONNECTION 23 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 24 25 Except as contained in this notice, the name of Be Incorporated shall not be 26 used in advertising or otherwise to promote the sale, use or other dealings in 27 this Software without prior written authorization from Be Incorporated. 28 29 Tracker(TM), Be(R), BeOS(R), and BeIA(TM) are trademarks or registered 30 trademarks of Be Incorporated in the United States and other countries. Other 31 brand product names are registered trademarks or trademarks of their respective 32 holders. 33 34 All rights reserved. 35 */ 36 37 38 #include "TruncatableMenuItem.h" 39 40 #include <StackOrHeapArray.h> 41 42 #include <stdlib.h> 43 44 #include "BarApp.h" 45 #include "BarView.h" 46 #include "TeamMenuItem.h" 47 48 49 const float kVPad = 2.0f; 50 51 52 // #pragma mark - TTruncatableMenuItem 53 54 55 TTruncatableMenuItem::TTruncatableMenuItem(const char* label, BMessage* message, 56 char shortcut, uint32 modifiers) 57 : 58 BMenuItem(label, message, shortcut, modifiers) 59 { 60 fTruncatedString = label; 61 } 62 63 64 TTruncatableMenuItem::TTruncatableMenuItem(BMenu* menu, BMessage* message) 65 : 66 BMenuItem(menu, message) 67 { 68 } 69 70 71 TTruncatableMenuItem::TTruncatableMenuItem(BMessage* data) 72 : 73 BMenuItem(data) 74 { 75 } 76 77 78 TTruncatableMenuItem::~TTruncatableMenuItem() 79 { 80 } 81 82 83 const char* 84 TTruncatableMenuItem::Label() 85 { 86 return BMenuItem::Label(); 87 } 88 89 90 const char* 91 TTruncatableMenuItem::Label(float width) 92 { 93 BMenu* menu = Menu(); 94 95 float maxWidth = menu->MaxContentWidth() - kVPad * 2; 96 if (dynamic_cast<TTeamMenuItem*>(this) != NULL 97 && static_cast<TBarApp*>(be_app)->BarView()->Vertical() 98 && static_cast<TBarApp*>(be_app)->Settings()->superExpando) { 99 maxWidth -= kSwitchWidth; 100 } 101 102 const char* label = Label(); 103 if (width > 0 && maxWidth > 0 && width > maxWidth) { 104 BStackOrHeapArray<char, 128> truncatedLabel(strlen(label) + 4); 105 if (truncatedLabel.IsValid()) { 106 float labelWidth = menu->StringWidth(label); 107 float offset = width - labelWidth; 108 TruncateLabel(maxWidth - offset, truncatedLabel); 109 fTruncatedString.SetTo(truncatedLabel); 110 return fTruncatedString.String(); 111 } 112 } 113 114 fTruncatedString.SetTo(label); 115 116 return label; 117 } 118 119 120 void 121 TTruncatableMenuItem::SetLabel(const char* label) 122 { 123 fTruncatedString.SetTo(label); 124 125 BMenuItem::SetLabel(label); 126 } 127