/* Yaaic - Yet Another Android IRC Client Copyright 2009 Sebastian Kaspari This file is part of Yaaic. Yaaic is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Yaaic 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 General Public License for more details. You should have received a copy of the GNU General Public License along with Yaaic. If not, see . */ package org.yaaic.view; import org.yaaic.adapter.MessageListAdapter; import android.content.Context; import android.view.MotionEvent; import android.widget.ListView; /** * A customized ListView for Messages * * @author Sebastian Kaspari */ public class MessageListView extends ListView { public static final String TAG = "Yaaic/MessageListView"; private boolean delegate = true; /** * Create a new MessageListView * * @param context */ public MessageListView(Context context) { super(context); } /** * Should all touch events delegated? * * @param delegate If true all touch events will be delegated, otherwise the listview will handle them */ public void setDelegateTouchEvents(boolean delegate) { this.delegate = delegate; } /** * Handle touch screen motion events */ @Override public boolean onTouchEvent(MotionEvent event) { if (delegate) { // We delegate the touch events to the underlying view return false; } else { return super.onTouchEvent(event); } } /** * Get the adapter of this MessageListView * (Helper to avoid casting) * * @return The MessageListAdapter */ public MessageListAdapter getAdapter() { return (MessageListAdapter) super.getAdapter(); } }