epoger@google.com | ec3ed6a | 2011-07-28 14:26:00 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2011 Google Inc. |
| 3 | * |
| 4 | * Use of this source code is governed by a BSD-style license that can be |
| 5 | * found in the LICENSE file. |
| 6 | */ |
bsalomon@google.com | ab9e2c6 | 2012-03-08 16:20:16 +0000 | [diff] [blame] | 7 | |
tfarina@chromium.org | b1b7f707 | 2012-09-18 01:52:20 +0000 | [diff] [blame] | 8 | #include "OverView.h" |
reed@android.com | 34245c7 | 2009-11-03 04:00:48 +0000 | [diff] [blame] | 9 | #include "SampleCode.h" |
| 10 | #include "SkCanvas.h" |
| 11 | #include "SkView.h" |
| 12 | |
commit-bot@chromium.org | ab13167 | 2013-09-13 12:39:55 +0000 | [diff] [blame] | 13 | static const char gIsOverview[] = "is-overview"; |
bsalomon@google.com | ab9e2c6 | 2012-03-08 16:20:16 +0000 | [diff] [blame] | 14 | |
reed | bf015c3 | 2015-02-03 15:02:24 -0800 | [diff] [blame] | 15 | static int to_lower(int c) { |
| 16 | if ('A' <= c && c <= 'Z') { |
| 17 | c = c - 'A' + 'a'; |
| 18 | } |
| 19 | return c; |
| 20 | } |
| 21 | |
| 22 | static void make_lc(SkString* str) { |
| 23 | char* ptr = str->writable_str(); |
| 24 | while (*ptr) { |
| 25 | *ptr = to_lower(*ptr); |
| 26 | ptr += 1; |
| 27 | } |
| 28 | } |
| 29 | |
| 30 | static bool case_insensitive_find(const SkString& base, const SkString& sub) { |
| 31 | SkString lcBase(base); |
| 32 | SkString lcSub(sub); |
| 33 | make_lc(&lcBase); |
| 34 | make_lc(&lcSub); |
| 35 | return lcBase.find(lcSub.c_str()) >= 0; |
| 36 | } |
| 37 | |
| 38 | static bool draw_this_name(const SkString& name, const SkString& filter) { |
| 39 | if (filter.isEmpty()) { |
| 40 | return true; |
| 41 | } |
| 42 | return case_insensitive_find(name, filter); |
| 43 | } |
| 44 | |
reed@android.com | 34245c7 | 2009-11-03 04:00:48 +0000 | [diff] [blame] | 45 | class OverView : public SkView { |
| 46 | public: |
bsalomon@google.com | 48dd1a2 | 2011-10-31 14:18:20 +0000 | [diff] [blame] | 47 | OverView(int count, const SkViewFactory* factories[]); |
reed@android.com | 34245c7 | 2009-11-03 04:00:48 +0000 | [diff] [blame] | 48 | virtual ~OverView(); |
bsalomon@google.com | ab9e2c6 | 2012-03-08 16:20:16 +0000 | [diff] [blame] | 49 | |
reed@android.com | 34245c7 | 2009-11-03 04:00:48 +0000 | [diff] [blame] | 50 | protected: |
mtklein | 36352bf | 2015-03-25 18:17:31 -0700 | [diff] [blame] | 51 | bool onEvent(const SkEvent&) override; |
| 52 | bool onQuery(SkEvent* evt) override { |
reed@android.com | 34245c7 | 2009-11-03 04:00:48 +0000 | [diff] [blame] | 53 | if (SampleCode::TitleQ(*evt)) { |
| 54 | SampleCode::TitleR(evt, "Overview"); |
| 55 | return true; |
| 56 | } |
yangsu@google.com | ef7bdfa | 2011-08-12 14:27:47 +0000 | [diff] [blame] | 57 | if (evt->isType(gIsOverview)) { |
| 58 | return true; |
| 59 | } |
reed | bf015c3 | 2015-02-03 15:02:24 -0800 | [diff] [blame] | 60 | SkUnichar uni; |
| 61 | if (SampleCode::CharQ(*evt, &uni)) { |
| 62 | fMatchStr.appendUnichar(uni); |
halcanary | 96fcdcc | 2015-08-27 07:41:13 -0700 | [diff] [blame] | 63 | this->inval(nullptr); |
reed | bf015c3 | 2015-02-03 15:02:24 -0800 | [diff] [blame] | 64 | return true; |
| 65 | } |
reed@android.com | 34245c7 | 2009-11-03 04:00:48 +0000 | [diff] [blame] | 66 | return this->INHERITED::onQuery(evt); |
| 67 | } |
| 68 | |
mtklein | 36352bf | 2015-03-25 18:17:31 -0700 | [diff] [blame] | 69 | void onDraw(SkCanvas* canvas) override; |
bsalomon@google.com | ab9e2c6 | 2012-03-08 16:20:16 +0000 | [diff] [blame] | 70 | |
mtklein | 36352bf | 2015-03-25 18:17:31 -0700 | [diff] [blame] | 71 | bool onSendClickToChildren(SkScalar x, SkScalar y, unsigned modi) override { |
reed@android.com | e72fee5 | 2009-11-16 14:52:01 +0000 | [diff] [blame] | 72 | return false; |
| 73 | } |
| 74 | |
mtklein | 36352bf | 2015-03-25 18:17:31 -0700 | [diff] [blame] | 75 | Click* onFindClickHandler(SkScalar cx, SkScalar cy, unsigned modi) override { |
reed | bf015c3 | 2015-02-03 15:02:24 -0800 | [diff] [blame] | 76 | const SkRect crect = SkRect::MakeXYWH(cx - 0.5f, cy - 0.5f, 1, 1); |
| 77 | SkPoint loc = this->start(); |
| 78 | for (int i = 0; i < fCount; ++i) { |
| 79 | if (draw_this_name(fNames[i], fMatchStr)) { |
| 80 | if (this->bounds(loc).intersects(crect)) { |
| 81 | SkEvent evt("set-curr-index"); |
| 82 | evt.setFast32(i); |
| 83 | this->sendEventToParents(evt); |
| 84 | break; |
| 85 | } |
| 86 | this->next(&loc); |
| 87 | } |
reed@android.com | 34245c7 | 2009-11-03 04:00:48 +0000 | [diff] [blame] | 88 | } |
halcanary | 96fcdcc | 2015-08-27 07:41:13 -0700 | [diff] [blame] | 89 | return nullptr; |
reed@android.com | 34245c7 | 2009-11-03 04:00:48 +0000 | [diff] [blame] | 90 | } |
| 91 | |
| 92 | private: |
bsalomon@google.com | ab9e2c6 | 2012-03-08 16:20:16 +0000 | [diff] [blame] | 93 | int fCount; |
| 94 | const SkViewFactory** fFactories; |
reed | bf015c3 | 2015-02-03 15:02:24 -0800 | [diff] [blame] | 95 | SkString* fNames; |
| 96 | SkString fMatchStr; |
| 97 | SkPaint fNamePaint; |
| 98 | SkPaint::FontMetrics fNameMetrics; |
| 99 | SkScalar fNameW; |
| 100 | SkScalar fNameH; |
| 101 | |
| 102 | SkRect bounds(const SkPoint& loc) const { |
| 103 | return SkRect::MakeXYWH(loc.x(), loc.y() + fNameMetrics.fAscent, fNameW, fNameH); |
| 104 | } |
| 105 | |
| 106 | SkPoint start() const { |
| 107 | return SkPoint::Make(10, -fNameMetrics.fTop); |
| 108 | } |
| 109 | |
| 110 | void next(SkPoint* loc) const { |
| 111 | loc->fY += fNameH; |
| 112 | if (loc->fY > this->height() - fNameMetrics.fBottom) { |
| 113 | loc->fY = -fNameMetrics.fTop; |
| 114 | loc->fX += fNameW; |
| 115 | } |
| 116 | } |
reed@android.com | 34245c7 | 2009-11-03 04:00:48 +0000 | [diff] [blame] | 117 | |
| 118 | typedef SkView INHERITED; |
| 119 | }; |
| 120 | |
bsalomon@google.com | 48dd1a2 | 2011-10-31 14:18:20 +0000 | [diff] [blame] | 121 | SkView* create_overview(int count, const SkViewFactory* factories[]) { |
halcanary | 385fe4d | 2015-08-26 13:07:48 -0700 | [diff] [blame] | 122 | return new OverView(count, factories); |
bsalomon@google.com | ab9e2c6 | 2012-03-08 16:20:16 +0000 | [diff] [blame] | 123 | } |
| 124 | |
| 125 | bool is_overview(SkView* view) { |
| 126 | SkEvent isOverview(gIsOverview); |
| 127 | return view->doQuery(&isOverview); |
| 128 | } |
reed@android.com | 34245c7 | 2009-11-03 04:00:48 +0000 | [diff] [blame] | 129 | |
bsalomon@google.com | 48dd1a2 | 2011-10-31 14:18:20 +0000 | [diff] [blame] | 130 | OverView::OverView(int count, const SkViewFactory* factories[]) { |
reed@android.com | 34245c7 | 2009-11-03 04:00:48 +0000 | [diff] [blame] | 131 | fCount = count; |
| 132 | fFactories = factories; |
reed | bf015c3 | 2015-02-03 15:02:24 -0800 | [diff] [blame] | 133 | |
| 134 | fNames = new SkString[count]; |
| 135 | for (int i = 0; i < count; ++i) { |
| 136 | SkView* view = (*fFactories[i])(); |
| 137 | if (view) { |
| 138 | (void)SampleCode::RequestTitle(view, &fNames[i]); |
| 139 | if (0 == fNames[i].find("GM:")) { |
| 140 | fNames[i].remove(0, 3); |
| 141 | } |
| 142 | } |
| 143 | } |
| 144 | |
| 145 | fNamePaint.setAntiAlias(true); |
| 146 | fNamePaint.setTextSize(12); |
| 147 | fNameW = 160; |
| 148 | fNameH = fNamePaint.getFontMetrics(&fNameMetrics); |
reed@android.com | 34245c7 | 2009-11-03 04:00:48 +0000 | [diff] [blame] | 149 | } |
| 150 | |
| 151 | OverView::~OverView() { |
reed | bf015c3 | 2015-02-03 15:02:24 -0800 | [diff] [blame] | 152 | delete[] fNames; |
reed@android.com | 34245c7 | 2009-11-03 04:00:48 +0000 | [diff] [blame] | 153 | } |
| 154 | |
| 155 | bool OverView::onEvent(const SkEvent& evt) { |
| 156 | return this->INHERITED::onEvent(evt); |
| 157 | } |
| 158 | |
reed | bf015c3 | 2015-02-03 15:02:24 -0800 | [diff] [blame] | 159 | void OverView::onDraw(SkCanvas* canvas) { |
| 160 | SkPaint paint; |
| 161 | paint.setColor(0xFFF8F8F8); |
| 162 | canvas->drawPaint(paint); |
bsalomon@google.com | ab9e2c6 | 2012-03-08 16:20:16 +0000 | [diff] [blame] | 163 | |
reed | bf015c3 | 2015-02-03 15:02:24 -0800 | [diff] [blame] | 164 | SkPoint loc = this->start(); |
| 165 | for (int i = 0; i < fCount; ++i) { |
| 166 | if (draw_this_name(fNames[i], fMatchStr)) { |
| 167 | canvas->drawRect(this->bounds(loc), paint); |
| 168 | canvas->drawText(fNames[i].c_str(), fNames[i].size(), loc.x(), loc.y(), fNamePaint); |
| 169 | this->next(&loc); |
reed@android.com | 34245c7 | 2009-11-03 04:00:48 +0000 | [diff] [blame] | 170 | } |
| 171 | } |
| 172 | } |
| 173 | |