diff options
| author | Brandon Schaefer <brandon.schaefer@canonical.com> | 2012-11-13 13:42:58 -0800 |
|---|---|---|
| committer | Brandon Schaefer <brandon.schaefer@canonical.com> | 2012-11-13 13:42:58 -0800 |
| commit | b4fdb26d5508211b60ebf6e5e353e1389ba41114 (patch) | |
| tree | 4845ba5e27eebe5774b3887a564530d32a85803a /dash/previews | |
| parent | 51a7bae949ddd380bba052e60d7ca19745a3c4ae (diff) | |
* Adds overlayscroll bar
(bzr r2892.5.1)
Diffstat (limited to 'dash/previews')
| -rw-r--r-- | dash/previews/ApplicationPreview.cpp | 4 | ||||
| -rw-r--r-- | dash/previews/GenericPreview.cpp | 4 | ||||
| -rw-r--r-- | dash/previews/MoviePreview.cpp | 4 | ||||
| -rw-r--r-- | dash/previews/SocialPreview.cpp | 4 | ||||
| -rw-r--r-- | dash/previews/Tracks.cpp | 4 |
5 files changed, 10 insertions, 10 deletions
diff --git a/dash/previews/ApplicationPreview.cpp b/dash/previews/ApplicationPreview.cpp index ebc994807..76c377c7f 100644 --- a/dash/previews/ApplicationPreview.cpp +++ b/dash/previews/ApplicationPreview.cpp @@ -25,7 +25,7 @@ #include "unity-shared/CoverArt.h" #include "unity-shared/IconTexture.h" #include "unity-shared/StaticCairoText.h" -#include "unity-shared/PlacesVScrollBar.h" +#include "unity-shared/PlacesOverlayVScrollBar.h" #include <UnityCore/ApplicationPreview.h> #include <NuxCore/Logger.h> #include <Nux/HLayout.h> @@ -54,7 +54,7 @@ public: DetailsScrollView(NUX_FILE_LINE_PROTO) : ScrollView(NUX_FILE_LINE_PARAM) { - SetVScrollBar(new dash::PlacesVScrollBar(NUX_TRACKER_LOCATION)); + SetVScrollBar(new dash::PlacesOverlayVScrollBar(NUX_TRACKER_LOCATION)); } }; diff --git a/dash/previews/GenericPreview.cpp b/dash/previews/GenericPreview.cpp index 3b396299c..b6ef3b09b 100644 --- a/dash/previews/GenericPreview.cpp +++ b/dash/previews/GenericPreview.cpp @@ -24,7 +24,7 @@ #include "unity-shared/PreviewStyle.h" #include "unity-shared/CoverArt.h" #include "unity-shared/StaticCairoText.h" -#include "unity-shared/PlacesVScrollBar.h" +#include "unity-shared/PlacesOverlayVScrollBar.h" #include <NuxCore/Logger.h> #include <Nux/HLayout.h> #include <Nux/VLayout.h> @@ -49,7 +49,7 @@ public: DetailsScrollView(NUX_FILE_LINE_PROTO) : ScrollView(NUX_FILE_LINE_PARAM) { - SetVScrollBar(new dash::PlacesVScrollBar(NUX_TRACKER_LOCATION)); + SetVScrollBar(new dash::PlacesOverlayVScrollBar(NUX_TRACKER_LOCATION)); } }; diff --git a/dash/previews/MoviePreview.cpp b/dash/previews/MoviePreview.cpp index 653bd7a8d..5d5e29941 100644 --- a/dash/previews/MoviePreview.cpp +++ b/dash/previews/MoviePreview.cpp @@ -24,7 +24,7 @@ #include "unity-shared/PreviewStyle.h" #include "unity-shared/CoverArt.h" #include "unity-shared/StaticCairoText.h" -#include "unity-shared/PlacesVScrollBar.h" +#include "unity-shared/PlacesOverlayVScrollBar.h" #include <UnityCore/MoviePreview.h> #include <NuxCore/Logger.h> #include <Nux/HLayout.h> @@ -50,7 +50,7 @@ public: DetailsScrollView(NUX_FILE_LINE_PROTO) : ScrollView(NUX_FILE_LINE_PARAM) { - SetVScrollBar(new dash::PlacesVScrollBar(NUX_TRACKER_LOCATION)); + SetVScrollBar(new dash::PlacesOverlayVScrollBar(NUX_TRACKER_LOCATION)); } }; diff --git a/dash/previews/SocialPreview.cpp b/dash/previews/SocialPreview.cpp index 1a4136381..51079d81b 100644 --- a/dash/previews/SocialPreview.cpp +++ b/dash/previews/SocialPreview.cpp @@ -25,7 +25,7 @@ #include "unity-shared/CoverArt.h" #include "unity-shared/IconTexture.h" #include "unity-shared/StaticCairoText.h" -#include "unity-shared/PlacesVScrollBar.h" +#include "unity-shared/PlacesOverlayVScrollBar.h" #include <UnityCore/SocialPreview.h> #include <NuxCore/Logger.h> #include <Nux/HLayout.h> @@ -54,7 +54,7 @@ public: DetailsScrollView(NUX_FILE_LINE_PROTO) : ScrollView(NUX_FILE_LINE_PARAM) { - SetVScrollBar(new dash::PlacesVScrollBar(NUX_TRACKER_LOCATION)); + SetVScrollBar(new dash::PlacesOverlayVScrollBar(NUX_TRACKER_LOCATION)); } }; diff --git a/dash/previews/Tracks.cpp b/dash/previews/Tracks.cpp index 523270ac7..1c5a3872c 100644 --- a/dash/previews/Tracks.cpp +++ b/dash/previews/Tracks.cpp @@ -24,7 +24,7 @@ #include <NuxCore/Logger.h> #include <Nux/VLayout.h> #include "unity-shared/IntrospectableWrappers.h" -#include "unity-shared/PlacesVScrollBar.h" +#include "unity-shared/PlacesOverlayVScrollBar.h" #include "unity-shared/PreviewStyle.h" #include <UnityCore/Track.h> #include <UnityCore/Variant.h> @@ -76,7 +76,7 @@ void Tracks::AddProperties(GVariantBuilder* builder) void Tracks::SetupViews() { - SetVScrollBar(new dash::PlacesVScrollBar(NUX_TRACKER_LOCATION)); + SetVScrollBar(new dash::PlacesOverlayVScrollBar(NUX_TRACKER_LOCATION)); EnableHorizontalScrollBar(false); layout_ = new nux::VLayout(); layout_->SetPadding(0, previews::Style::Instance().GetDetailsRightMargin(), 0, 0); |
