/* * 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 PREVIEWAPPLICATIONS_H #define PREVIEWAPPLICATIONS_H #include #include #include #include "StaticCairoText.h" #include "PreviewBase.h" namespace unity { class PreviewApplications : public PreviewBase { public: PreviewApplications (dash::Preview::Ptr preview, NUX_FILE_LINE_PROTO); virtual ~PreviewApplications (); virtual void SetPreview(dash::Preview::Ptr preview); protected: virtual long ComputeContentSize(); virtual void Draw(nux::GraphicsEngine& GfxContext, bool force_draw); virtual void DrawContent(nux::GraphicsEngine& GfxContext, bool force_draw); virtual void PostDraw(nux::GraphicsEngine& GfxContext, bool force_draw); private: void BuildLayout(); dash::ApplicationPreview::Ptr preview_; nux::StaticCairoText *description; }; } #endif // PREVIEWAPPLICATIONS_H