~bilalakhtar/unity/fix-queuedraw-after-addlaunchericon

« back to all changes in this revision

Viewing changes to dash/previews/Tracks.h

  • Committer: Tarmac
  • Author(s): Nick Dedekind, Gord Allott
  • Date: 2012-08-15 15:17:58 UTC
  • mfrom: (2419.4.70 unity.Preview)
  • Revision ID: tarmac-20120815151758-7tf3zgnndg5gocou
Added Music, App, Movie (basic) & Generic dash preview UIs and preview standalones.. Fixes: . Approved by Neil J. Patel.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// -*- Mode: C++; indent-tabs-mode: nil; tab-width: 2 -*-
 
2
/*
 
3
 * Copyright 2012 Canonical Ltd.
 
4
 *
 
5
 * This program is free software: you can redistribute it and/or modify it
 
6
 * under the terms of the GNU Lesser General Public License version 3, as
 
7
 * published by the  Free Software Foundation.
 
8
 *
 
9
 * This program is distributed in the hope that it will be useful, but
 
10
 * WITHOUT ANY WARRANTY; without even the implied warranties of
 
11
 * MERCHANTABILITY, SATISFACTORY QUALITY or FITNESS FOR A PARTICULAR
 
12
 * PURPOSE.  See the applicable version of the GNU Lesser General Public
 
13
 * License for more details.
 
14
 *
 
15
 * You should have received a copy of both the GNU Lesser General Public
 
16
 * License version 3 along with this program.  If not, see
 
17
 * <http://www.gnu.org/licenses/>
 
18
 *
 
19
 * Authored by: Nick Dedekind <nick.dedekind@canonical.com>
 
20
 *
 
21
 */
 
22
 
 
23
#ifndef TRACKS_H
 
24
#define TRACKS_H
 
25
 
 
26
#include <Nux/Nux.h>
 
27
#include <Nux/ScrollView.h>
 
28
#include <UnityCore/Tracks.h>
 
29
#include "unity-shared/Introspectable.h"
 
30
#include "Track.h"
 
31
 
 
32
namespace unity
 
33
{
 
34
namespace dash
 
35
{
 
36
class Track;
 
37
 
 
38
namespace previews
 
39
{
 
40
class TrackLayout;
 
41
 
 
42
class Tracks : public nux::ScrollView, public debug::Introspectable
 
43
{
 
44
public:
 
45
  typedef nux::ObjectPtr<Tracks> Ptr;
 
46
  NUX_DECLARE_OBJECT_TYPE(Tracks, nux::View);
 
47
 
 
48
  Tracks(dash::Tracks::Ptr tracks, NUX_FILE_LINE_PROTO);
 
49
  virtual ~Tracks();
 
50
 
 
51
  // From debug::Introspectable
 
52
  std::string GetName() const;
 
53
  void AddProperties(GVariantBuilder* builder);
 
54
 
 
55
  sigc::signal<void, std::string const&> play;
 
56
  sigc::signal<void, std::string const&> pause;
 
57
 
 
58
protected:
 
59
  virtual void Draw(nux::GraphicsEngine& gfx_engine, bool force_draw);
 
60
  virtual void DrawContent(nux::GraphicsEngine& gfx_engine, bool force_draw);
 
61
 
 
62
  void SetupViews();
 
63
 
 
64
  void OnTrackUpdated(dash::Track const& track);
 
65
  void OnTrackAdded(dash::Track const& track);
 
66
  void OnTrackRemoved(dash::Track const&track);
 
67
 
 
68
  void onPlayTrack(std::string const& uri);
 
69
  void onPauseTrack(std::string const& uri);
 
70
 
 
71
protected:
 
72
  dash::Tracks::Ptr tracks_;
 
73
 
 
74
  TrackLayout* layout_;
 
75
  std::map<std::string, previews::Track::Ptr> m_tracks;
 
76
  int track_count_;
 
77
};
 
78
 
 
79
}
 
80
}
 
81
}
 
82
 
 
83
#endif // TRACKS_H