epoger@google.com | ec3ed6a | 2011-07-28 14:26:00 +0000 | [diff] [blame] | 1 | |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 2 | /* |
epoger@google.com | ec3ed6a | 2011-07-28 14:26:00 +0000 | [diff] [blame] | 3 | * Copyright 2006 The Android Open Source Project |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 4 | * |
epoger@google.com | ec3ed6a | 2011-07-28 14:26:00 +0000 | [diff] [blame] | 5 | * Use of this source code is governed by a BSD-style license that can be |
| 6 | * found in the LICENSE file. |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 7 | */ |
| 8 | |
epoger@google.com | ec3ed6a | 2011-07-28 14:26:00 +0000 | [diff] [blame] | 9 | |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 10 | #ifndef SkOSMenu_DEFINED |
| 11 | #define SkOSMenu_DEFINED |
| 12 | |
| 13 | #include "SkEvent.h" |
| 14 | #include "SkTDArray.h" |
| 15 | |
| 16 | class SkOSMenu { |
| 17 | public: |
yangsu@google.com | 654d72f | 2011-08-01 17:27:33 +0000 | [diff] [blame] | 18 | explicit SkOSMenu(const char title[] = ""); |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 19 | ~SkOSMenu(); |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 20 | |
yangsu@google.com | 654d72f | 2011-08-01 17:27:33 +0000 | [diff] [blame] | 21 | /** |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 22 | * Each of these (except action) has an associated value, which is stored in |
yangsu@google.com | 654d72f | 2011-08-01 17:27:33 +0000 | [diff] [blame] | 23 | * the event payload for the item. |
| 24 | * Each type has a specific type for its value... |
| 25 | * Action : none |
| 26 | * List : int (selected index) |
| 27 | * Segmented : int (selected index) |
| 28 | * Slider : float |
| 29 | * Switch : bool |
| 30 | * TextField : string |
| 31 | * TriState : TriState |
| 32 | * Custom : custom object/value |
| 33 | */ |
yangsu@google.com | 654d72f | 2011-08-01 17:27:33 +0000 | [diff] [blame] | 34 | enum Type { |
| 35 | kAction_Type, |
| 36 | kList_Type, |
| 37 | kSlider_Type, |
| 38 | kSwitch_Type, |
| 39 | kTriState_Type, |
| 40 | kTextField_Type, |
| 41 | kCustom_Type |
| 42 | }; |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 43 | |
yangsu@google.com | e55f533 | 2011-08-05 22:11:41 +0000 | [diff] [blame] | 44 | enum TriState { |
| 45 | kMixedState = -1, |
| 46 | kOffState = 0, |
| 47 | kOnState = 1 |
| 48 | }; |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 49 | |
yangsu@google.com | 654d72f | 2011-08-01 17:27:33 +0000 | [diff] [blame] | 50 | class Item { |
| 51 | public: |
yangsu@google.com | e55f533 | 2011-08-05 22:11:41 +0000 | [diff] [blame] | 52 | /** |
| 53 | * Auto increments a global to generate an unique ID for each new item |
| 54 | * Note: Thread safe |
| 55 | */ |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 56 | Item(const char label[], SkOSMenu::Type type, const char slotName[], |
yangsu@google.com | e55f533 | 2011-08-05 22:11:41 +0000 | [diff] [blame] | 57 | SkEvent* evt); |
yangsu@google.com | 654d72f | 2011-08-01 17:27:33 +0000 | [diff] [blame] | 58 | ~Item() { delete fEvent; } |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 59 | |
yangsu@google.com | e55f533 | 2011-08-05 22:11:41 +0000 | [diff] [blame] | 60 | SkEvent* getEvent() const { return fEvent; } |
| 61 | int getID() const { return fID; } |
yangsu@google.com | 654d72f | 2011-08-01 17:27:33 +0000 | [diff] [blame] | 62 | const char* getLabel() const { return fLabel.c_str(); } |
| 63 | const char* getSlotName() const { return fSlotName.c_str(); } |
yangsu@google.com | e55f533 | 2011-08-05 22:11:41 +0000 | [diff] [blame] | 64 | Type getType() const { return fType; } |
| 65 | void setKeyEquivalent(SkUnichar key) { fKey = key; } |
| 66 | SkUnichar getKeyEquivalent() const { return fKey; } |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 67 | |
yangsu@google.com | e55f533 | 2011-08-05 22:11:41 +0000 | [diff] [blame] | 68 | /** |
yangsu@google.com | ef7bdfa | 2011-08-12 14:27:47 +0000 | [diff] [blame] | 69 | * Helper functions for predefined types |
| 70 | */ |
| 71 | void setBool(bool value) const; //For Switch |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 72 | void setScalar(SkScalar value) const; //For Slider |
yangsu@google.com | ef7bdfa | 2011-08-12 14:27:47 +0000 | [diff] [blame] | 73 | void setInt(int value) const; //For List |
| 74 | void setTriState(TriState value) const; //For Tristate |
| 75 | void setString(const char value[]) const; //For TextField |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 76 | |
yangsu@google.com | ef7bdfa | 2011-08-12 14:27:47 +0000 | [diff] [blame] | 77 | /** |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 78 | * Post event associated with the menu item to target, any changes to |
yangsu@google.com | e55f533 | 2011-08-05 22:11:41 +0000 | [diff] [blame] | 79 | * the associated event must be made prior to calling this method |
| 80 | */ |
| 81 | void postEvent() const { (new SkEvent(*(fEvent)))->post(); } |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 82 | |
yangsu@google.com | 654d72f | 2011-08-01 17:27:33 +0000 | [diff] [blame] | 83 | private: |
| 84 | int fID; |
| 85 | SkEvent* fEvent; |
| 86 | SkString fLabel; |
| 87 | SkString fSlotName; |
yangsu@google.com | 654d72f | 2011-08-01 17:27:33 +0000 | [diff] [blame] | 88 | Type fType; |
yangsu@google.com | e55f533 | 2011-08-05 22:11:41 +0000 | [diff] [blame] | 89 | SkUnichar fKey; |
yangsu@google.com | 654d72f | 2011-08-01 17:27:33 +0000 | [diff] [blame] | 90 | }; |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 91 | |
yangsu@google.com | ef7bdfa | 2011-08-12 14:27:47 +0000 | [diff] [blame] | 92 | void reset(); |
yangsu@google.com | e55f533 | 2011-08-05 22:11:41 +0000 | [diff] [blame] | 93 | const char* getTitle() const { return fTitle.c_str(); } |
| 94 | void setTitle (const char title[]) { fTitle.set(title); } |
yangsu@google.com | ef7bdfa | 2011-08-12 14:27:47 +0000 | [diff] [blame] | 95 | int getCount() const { return fItems.count(); } |
| 96 | const Item* getItemByID(int itemID) const; |
| 97 | void getItems(const Item* items[]) const; |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 98 | |
yangsu@google.com | e55f533 | 2011-08-05 22:11:41 +0000 | [diff] [blame] | 99 | /** |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 100 | * Assign key to the menu item with itemID, will do nothing if there's no |
yangsu@google.com | e55f533 | 2011-08-05 22:11:41 +0000 | [diff] [blame] | 101 | * item with the id given |
| 102 | */ |
| 103 | void assignKeyEquivalentToItem(int itemID, SkUnichar key); |
| 104 | /** |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 105 | * Call this in a SkView's onHandleChar to trigger any menu items with the |
| 106 | * given key equivalent. If such an item is found, the method will return |
| 107 | * true and its corresponding event will be triggered (default behavior |
yangsu@google.com | e55f533 | 2011-08-05 22:11:41 +0000 | [diff] [blame] | 108 | * defined for switches(toggling), tristates(cycle), and lists(cycle), |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 109 | * for anything else, the event attached is posted without state changes) |
yangsu@google.com | e55f533 | 2011-08-05 22:11:41 +0000 | [diff] [blame] | 110 | * If no menu item can be matched with the key, false will be returned |
| 111 | */ |
| 112 | bool handleKeyEquivalent(SkUnichar key); |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 113 | |
yangsu@google.com | e55f533 | 2011-08-05 22:11:41 +0000 | [diff] [blame] | 114 | /** |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 115 | * The following functions append new items to the menu and returns their |
| 116 | * associated unique id, which can be used to by the client to refer to |
yangsu@google.com | e55f533 | 2011-08-05 22:11:41 +0000 | [diff] [blame] | 117 | * the menu item created and change its state. slotName specifies the string |
| 118 | * identifier of any state/value to be returned in the item's SkEvent object |
| 119 | * NOTE: evt must be dynamically allocated |
| 120 | */ |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 121 | int appendItem(const char label[], Type type, const char slotName[], |
| 122 | SkEvent* evt); |
| 123 | |
yangsu@google.com | e55f533 | 2011-08-05 22:11:41 +0000 | [diff] [blame] | 124 | /** |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 125 | * Create predefined items with the given parameters. To be used with the |
yangsu@google.com | e55f533 | 2011-08-05 22:11:41 +0000 | [diff] [blame] | 126 | * other helper functions below to retrive/update state information. |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 127 | * Note: the helper functions below assume that slotName is UNIQUE for all |
yangsu@google.com | e55f533 | 2011-08-05 22:11:41 +0000 | [diff] [blame] | 128 | * menu items of the same type since it's used to identify the event |
| 129 | */ |
yangsu@google.com | 654d72f | 2011-08-01 17:27:33 +0000 | [diff] [blame] | 130 | int appendAction(const char label[], SkEventSinkID target); |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 131 | int appendList(const char label[], const char slotName[], |
yangsu@google.com | 654d72f | 2011-08-01 17:27:33 +0000 | [diff] [blame] | 132 | SkEventSinkID target, int defaultIndex, const char[] ...); |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 133 | int appendSlider(const char label[], const char slotName[], |
| 134 | SkEventSinkID target, SkScalar min, SkScalar max, |
yangsu@google.com | 654d72f | 2011-08-01 17:27:33 +0000 | [diff] [blame] | 135 | SkScalar defaultValue); |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 136 | int appendSwitch(const char label[], const char slotName[], |
yangsu@google.com | 654d72f | 2011-08-01 17:27:33 +0000 | [diff] [blame] | 137 | SkEventSinkID target, bool defaultState = false); |
| 138 | int appendTriState(const char label[], const char slotName[], |
yangsu@google.com | e55f533 | 2011-08-05 22:11:41 +0000 | [diff] [blame] | 139 | SkEventSinkID target, TriState defaultState = kOffState); |
yangsu@google.com | 654d72f | 2011-08-01 17:27:33 +0000 | [diff] [blame] | 140 | int appendTextField(const char label[], const char slotName[], |
| 141 | SkEventSinkID target, const char placeholder[] = ""); |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 142 | |
| 143 | |
yangsu@google.com | e55f533 | 2011-08-05 22:11:41 +0000 | [diff] [blame] | 144 | /** |
| 145 | * Helper functions to retrieve information other than the stored value for |
| 146 | * some predefined types |
| 147 | */ |
yangsu@google.com | ef7bdfa | 2011-08-12 14:27:47 +0000 | [diff] [blame] | 148 | static bool FindListItemCount(const SkEvent& evt, int* count); |
yangsu@google.com | e55f533 | 2011-08-05 22:11:41 +0000 | [diff] [blame] | 149 | /** |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 150 | * Ensure that the items array can store n SkStrings where n is the count |
yangsu@google.com | e55f533 | 2011-08-05 22:11:41 +0000 | [diff] [blame] | 151 | * extracted using FindListItemCount |
| 152 | */ |
yangsu@google.com | ef7bdfa | 2011-08-12 14:27:47 +0000 | [diff] [blame] | 153 | static bool FindListItems(const SkEvent& evt, SkString items[]); |
| 154 | static bool FindSliderMin(const SkEvent& evt, SkScalar* min); |
| 155 | static bool FindSliderMax(const SkEvent& evt, SkScalar* max); |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 156 | |
yangsu@google.com | e55f533 | 2011-08-05 22:11:41 +0000 | [diff] [blame] | 157 | /** |
| 158 | * Returns true if an action with the given label is found, false otherwise |
| 159 | */ |
yangsu@google.com | ef7bdfa | 2011-08-12 14:27:47 +0000 | [diff] [blame] | 160 | static bool FindAction(const SkEvent& evt, const char label[]); |
yangsu@google.com | e55f533 | 2011-08-05 22:11:41 +0000 | [diff] [blame] | 161 | /** |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 162 | * The following helper functions will return true if evt is generated from |
| 163 | * a predefined item type and retrieve the corresponding state information. |
| 164 | * They will return false and leave value unchanged if there's a type |
yangsu@google.com | e55f533 | 2011-08-05 22:11:41 +0000 | [diff] [blame] | 165 | * mismatch or slotName is incorrect |
| 166 | */ |
yangsu@google.com | ef7bdfa | 2011-08-12 14:27:47 +0000 | [diff] [blame] | 167 | static bool FindListIndex(const SkEvent& evt, const char slotName[], int* value); |
| 168 | static bool FindSliderValue(const SkEvent& evt, const char slotName[], SkScalar* value); |
| 169 | static bool FindSwitchState(const SkEvent& evt, const char slotName[], bool* value); |
| 170 | static bool FindTriState(const SkEvent& evt, const char slotName[], TriState* value); |
| 171 | static bool FindText(const SkEvent& evt, const char slotName[], SkString* value); |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 172 | |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 173 | private: |
yangsu@google.com | 654d72f | 2011-08-01 17:27:33 +0000 | [diff] [blame] | 174 | SkString fTitle; |
| 175 | SkTDArray<Item*> fItems; |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 176 | |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 177 | // illegal |
| 178 | SkOSMenu(const SkOSMenu&); |
| 179 | SkOSMenu& operator=(const SkOSMenu&); |
| 180 | }; |
| 181 | |
| 182 | #endif |