guix-devel
[Top][All Lists]
Advanced

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

[PATCH 17/26] gnu: kde-frameworks: Add kitemmodels.


From: David Craven
Subject: [PATCH 17/26] gnu: kde-frameworks: Add kitemmodels.
Date: Mon, 8 Aug 2016 13:54:15 +0200

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

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

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 487806a..e9838fd 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -555,6 +555,67 @@ but also for getting notified upon idle time events, such 
as custom timeouts,
 or user activity.")
     (license (list license:gpl2+ license:lgpl2.1+))))
 
+(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)
+       ("xorg-server" ,xorg-server)))
+    (inputs
+     `(("qtbase" ,qtbase)))
+    (arguments
+     `(#:phases
+        (modify-phases %standard-phases
+          (add-before 'check 'start-xorg-server
+            (lambda* (#:key inputs #:allow-other-keys)
+              ;; The test suite requires a running X server.
+              (system (string-append (assoc-ref inputs "xorg-server")
+                                     "/bin/Xvfb :1 &"))
+              (setenv "DISPLAY" ":1")
+             #t)))))
+    (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:lgpl2.1+)))
+
 (define-public kwindowsystem
   (package
     (name "kwindowsystem")
-- 
2.9.0



reply via email to

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