~3v1n0/unity/light-shortcuts

« back to all changes in this revision

Viewing changes to dash/FilterFactory.h

  • Committer: Marco Trevisan (Treviño)
  • Date: 2013-04-26 12:41:09 UTC
  • Revision ID: mail@3v1n0.net-20130426124109-t3b2shjah2omiqa2
Unity: Remove all the views, but the Shortcuts

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * Copyright 2011 Canonical Ltd.
3
 
 *
4
 
 * This program is free software: you can redistribute it and/or modify it
5
 
 * under the terms of the GNU Lesser General Public License version 3, as
6
 
 * published by the  Free Software Foundation.
7
 
 *
8
 
 * This program is distributed in the hope that it will be useful, but
9
 
 * WITHOUT ANY WARRANTY; without even the implied warranties of
10
 
 * MERCHANTABILITY, SATISFACTORY QUALITY or FITNESS FOR A PARTICULAR
11
 
 * PURPOSE.  See the applicable version of the GNU Lesser General Public
12
 
 * License for more details.
13
 
 *
14
 
 * You should have received a copy of both the GNU Lesser General Public
15
 
 * License version 3 along with this program.  If not, see
16
 
 * <http://www.gnu.org/licenses/>
17
 
 *
18
 
 * Authored by: Gordon Allott <gord.allott@canonical.com>
19
 
 *
20
 
 */
21
 
 
22
 
#ifndef UNITYSHELL_FILTERFACTORY_H
23
 
#define UNITYSHELL_FILTERFACTORY_H
24
 
 
25
 
#include <Nux/View.h>
26
 
#include <UnityCore/Filter.h>
27
 
 
28
 
namespace unity
29
 
{
30
 
namespace dash
31
 
{
32
 
 
33
 
class FilterExpanderLabel;
34
 
 
35
 
class FilterFactory
36
 
{
37
 
public:
38
 
  FilterExpanderLabel* WidgetForFilter(Filter::Ptr const& filter);
39
 
};
40
 
 
41
 
} // namespace dash
42
 
} // namespace unity
43
 
 
44
 
#endif // UNITYSHELL_FILTERFACTORY_H
45