// -*- 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 RESULTVIEW_H #define RESULTVIEW_H #include #include #include #include #include #include "unity-shared/Introspectable.h" #include "ResultRenderer.h" namespace unity { namespace debug { class ResultWrapper; } namespace dash { struct ResultViewTexture { typedef std::shared_ptr Ptr; unsigned int category_index; nux::Geometry abs_geo; int row_index; nux::ObjectPtr texture; }; class ResultView : public nux::View, public debug::Introspectable { public: typedef enum ActivateType_ { DIRECT, PREVIEW } ActivateType; NUX_DECLARE_OBJECT_TYPE(ResultView, nux::View); ResultView(NUX_FILE_LINE_DECL); virtual ~ResultView(); void SetModelRenderer(ResultRenderer* renderer); void SetResultsModel(Results::Ptr const& results); unsigned int GetIndexForLocalResult(LocalResult const& local_result); LocalResult GetLocalResultForIndex(unsigned int); nux::Property expanded; nux::Property results_per_row; nux::Property unique_id; nux::Property desaturation_progress; nux::Property enable_texture_render; sigc::signal ResultActivated; std::string GetName() const; ResultIterator GetIteratorAtRow(unsigned row); void AddProperties(GVariantBuilder* builder); IntrospectableList GetIntrospectableChildren(); virtual int GetSelectedIndex() const; virtual void SetSelectedIndex(int index); virtual void Activate(LocalResult const& local_result, int index, ActivateType type) = 0; std::vector const& GetResultTextureContainers(); virtual void RenderResultTexture(ResultViewTexture::Ptr const& result_texture); virtual void GetResultDimensions(int& rows, int& columns); protected: virtual void Draw(nux::GraphicsEngine& GfxContext, bool force_draw); virtual void DrawContent(nux::GraphicsEngine& GfxContext, bool force_draw); virtual void UpdateRenderTextures(); virtual void AddResult(Result const& result); virtual void RemoveResult(Result const& result); unsigned GetNumResults(); virtual debug::ResultWrapper* CreateResultWrapper(Result const& result, int index); virtual void UpdateResultWrapper(debug::ResultWrapper* wrapper, Result const& result, int index); void OnEnableRenderToTexture(bool enable_render_to_texture); // properties ResultRenderer* renderer_; Results::Ptr result_model_; std::map introspectable_children_; std::vector result_textures_; private: void OnRowAdded(DeeModel* model, DeeModelIter* iter); void OnRowRemoved(DeeModel* model, DeeModelIter* iter); Result cached_result_; sigc::connection result_added_connection_; sigc::connection result_removed_connection_; }; } } #endif //RESULTVIEW_H