guix-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH 22/31] gnu: kde-frameworks: Add kitemmodels.


From: David Craven
Subject: [PATCH 22/31] gnu: kde-frameworks: Add kitemmodels.
Date: Mon, 1 Aug 2016 20:13:33 +0200

From: Hartmut Goebel <address@hidden>

* gnu/packages/kde-frameworks.scm (kitemmodels): New variable.

Co-authored-by: David Craven <address@hidden>
---
 gnu/packages/kde-frameworks.scm | 52 +++++++++++++++++++++++++++++++++++++++++
 1 file changed, 52 insertions(+)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index c6a24ba..5ef36a6 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -503,6 +503,58 @@ but also for getting notified upon idle time events, such 
as custom timeouts,
 or user activity.")
     (license license:lgpl3+)))
 
+(define-public kitemmodels
+  (package
+    (name "kitemmodels")
+    (version "5.24.0")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (string-append "mirror://kde/stable/frameworks/"
+                            (version-major+minor version) "/"
+                            name "-" version ".tar.xz"))
+        (sha256
+         (base32
+          "1s1p4nw1pqdzbdwvjnka17p9avf00wadr437p4f96md1lvh3sh69"))))
+    (build-system cmake-build-system)
+    (native-inputs
+     `(("extra-cmake-modules" ,extra-cmake-modules)))
+    (inputs
+     `(("qtbase" ,qtbase)))
+    (arguments
+     `(#:tests? #f)) ; FIXME: 10/10 tests fail.
+    (home-page "https://community.kde.org/Frameworks";)
+    (synopsis "Set of item models extending the Qt model-view framework")
+    (description "KItemModels provides the following models:
+
address@hidden
address@hidden KBreadcrumbSelectionModel - Selects the parents of selected 
items to
+create breadcrumbs.
+
address@hidden KCheckableProxyModel - Adds a checkable capability to a source 
model.
+
address@hidden KConcatenateRowsProxyModel - Concatenates rows from multiple 
source models.
+
address@hidden KDescendantsProxyModel - Proxy Model for restructuring a Tree 
into a list.
+
address@hidden KExtraColumnsProxyModel - Adds columns after existing columns.
+
address@hidden KLinkItemSelectionModel - Share a selection in multiple views 
which do
+not have the same source model.
+
address@hidden KModelIndexProxyMapper - Mapping of indexes and selections 
through proxy
+models.
+
address@hidden KRearrangeColumnsProxyModel - Can reorder and hide columns from 
the source
+model.
+
address@hidden KRecursiveFilterProxyModel - Recursive filtering of models.
+
address@hidden KSelectionProxyModel - A Proxy Model which presents a subset of 
its source
+model to observers
address@hidden itemize")
+    (license license:lgpl3+)))
+
 (define-public kwindowsystem
 ;;; TODO qtx11extras isn't found
   (package
-- 
2.9.0



reply via email to

[Prev in Thread] Current Thread [Next in Thread]