// -*- Mode: C++; indent-tabs-mode: nil; tab-width: 2 -*-
/*
* Copyright 2011 Canonical Ltd.
*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License version 3, as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranties of
* MERCHANTABILITY, SATISFACTORY QUALITY or FITNESS FOR A PARTICULAR
* PURPOSE. See the applicable version of the GNU Lesser General Public
* License for more details.
*
* You should have received a copy of both the GNU Lesser General Public
* License version 3 along with this program. If not, see
*
*
* Authored by: Gordon Allott
*
*/
#ifndef UNITYSHELL_FILTERBAR_H
#define UNITYSHELL_FILTERBAR_H
#include
#include
#include "FilterFactory.h"
#include "unity-shared/Introspectable.h"
namespace unity
{
namespace dash
{
class FilterExpanderLabel;
class FilterBar : public nux::View, public debug::Introspectable
{
NUX_DECLARE_OBJECT_TYPE(FilterBar, nux::View);
public:
FilterBar(NUX_FILE_LINE_PROTO);
~FilterBar();
nux::Property scale;
void SetFilters(Filters::Ptr const& filters);
void AddFilter(Filter::Ptr const& filter);
void RemoveFilter(Filter::Ptr const& filter);
void ClearFilters();
protected:
virtual bool AcceptKeyNavFocus();
virtual void Draw(nux::GraphicsEngine& GfxContext, bool force_draw);
virtual void DrawContent(nux::GraphicsEngine& GfxContext, bool force_draw);
// Introspection
virtual std::string GetName() const;
virtual void AddProperties(debug::IntrospectionData&);
private:
void Init();
void UpdateScale(double scale);
FilterFactory factory_;
Filters::Ptr filters_;
std::map filter_map_;
};
} // namespace dash
} // namespace unity
#endif // UNITYSHELL_FILTERBAR_H