/* * Copyright 2012, Dario Casalinuovo. All rights reserved. * Distributed under the terms of the MIT License. * * Authors: * Dario Casalinuovo, dario.casalinuovo@gmail.com */ #include "CayaConstants.h" #include "SearchBarTextControl.h" #include #include #include #include SearchBarTextControl::SearchBarTextControl(BMessage* message) : BTextControl("searchBox", NULL, NULL, message) { SetViewColor(ui_color(B_PANEL_BACKGROUND_COLOR)); rgb_color color = tint_color(ViewColor(), B_DARKEN_3_TINT); TextView()->SetFontAndColor(NULL, B_FONT_ALL, &color); TextView()->MakeSelectable(false); SetModificationMessage(new BMessage(*message)); } void SearchBarTextControl::KeyDown(const char* bytes, int32 numBytes) { }