Tue Apr 14 16:29:22 CEST 2009 Tobias Rautenkranz * License diff -rN -u old-qt.examples/qt.examples.mbd new-qt.examples/qt.examples.mbd --- old-qt.examples/qt.examples.mbd 2014-10-07 00:17:49.000000000 +0200 +++ new-qt.examples/qt.examples.mbd 2014-10-07 00:17:49.000000000 +0200 @@ -1,4 +1,28 @@ ;;;; -*- Mode: lisp; indent-tabs-mode: nil -*- +;;; +;;; Copyright 2009 Tobias Rautenkranz +;;; +;;; Permission is hereby granted, free of charge, to any person +;;; obtaining a copy of this software and associated documentation +;;; files (the "Software"), to deal in the Software without +;;; restriction, including without limitation the rights to use, +;;; copy, modify, merge, publish, distribute, sublicense, and/or sell +;;; copies of the Software, and to permit persons to whom the +;;; Software is furnished to do so, subject to the following +;;; conditions: +;;; +;;; The above copyright notice and this permission notice shall be +;;; included in all copies or substantial portions of the Software. +;;; +;;; THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +;;; EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +;;; OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +;;; NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +;;; HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +;;; WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +;;; FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +;;; OTHER DEALINGS IN THE SOFTWARE. + ;;; SYSDEF.CMAKE (defpackage :sysdef.cmake @@ -22,6 +46,7 @@ (:version 0 0 1) (:documentation "Qt examples.") (:author "Tobias Rautenkranz") + (:license "X11") (:needs :qt :qt.webkit :qt.uitools :sysdef.cmake) (:components ("src" module diff -rN -u old-qt.examples/src/UseClQti18n.cmake new-qt.examples/src/UseClQti18n.cmake --- old-qt.examples/src/UseClQti18n.cmake 2014-10-07 00:17:49.000000000 +0200 +++ new-qt.examples/src/UseClQti18n.cmake 2014-10-07 00:17:49.000000000 +0200 @@ -1,3 +1,26 @@ +# Copyright 2009 Tobias Rautenkranz +# +# Permission is hereby granted, free of charge, to any person +# obtaining a copy of this software and associated documentation +# files (the "Software"), to deal in the Software without +# restriction, including without limitation the rights to use, +# copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the +# Software is furnished to do so, subject to the following +# conditions: +# +# The above copyright notice and this permission notice shall be +# included in all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +# HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +# WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +# OTHER DEALINGS IN THE SOFTWARE. +# # - Extract qt:tr strings from lisp source files and generate the Qt message files. # # macro CL_GENERATE_QT_CATALOG(CATALOG_NAME LISP_SOURCE_FILES) diff -rN -u old-qt.examples/src/class-browser.lisp new-qt.examples/src/class-browser.lisp --- old-qt.examples/src/class-browser.lisp 2014-10-07 00:17:49.000000000 +0200 +++ new-qt.examples/src/class-browser.lisp 2014-10-07 00:17:49.000000000 +0200 @@ -1,5 +1,7 @@ +;;; Copyright 2009 Tobias Rautenkranz +;;; License: X11 license + (in-package :qt.examples) -(declaim (optimize (debug 3))) (defclass classes-model (qt:abstract-list-model) ((items :reader items :initarg :items diff -rN -u old-qt.examples/src/hello-world-quit.lisp new-qt.examples/src/hello-world-quit.lisp --- old-qt.examples/src/hello-world-quit.lisp 2014-10-07 00:17:49.000000000 +0200 +++ new-qt.examples/src/hello-world-quit.lisp 2014-10-07 00:17:49.000000000 +0200 @@ -1,3 +1,6 @@ +;;; Copyright 2009 Tobias Rautenkranz +;;; License: X11 license + (in-package :qt.examples) (defun hello-world-quit () diff -rN -u old-qt.examples/src/hello-world.lisp new-qt.examples/src/hello-world.lisp --- old-qt.examples/src/hello-world.lisp 2014-10-07 00:17:49.000000000 +0200 +++ new-qt.examples/src/hello-world.lisp 2014-10-07 00:17:49.000000000 +0200 @@ -1,5 +1,7 @@ +;;; Copyright 2009 Tobias Rautenkranz +;;; License: X11 license + (in-package :qt.examples) -(declaim (optimize (debug 3))) (defun hello-world () "Hello world" diff -rN -u old-qt.examples/src/i18n-hello-world.lisp new-qt.examples/src/i18n-hello-world.lisp --- old-qt.examples/src/i18n-hello-world.lisp 2014-10-07 00:17:49.000000000 +0200 +++ new-qt.examples/src/i18n-hello-world.lisp 2014-10-07 00:17:49.000000000 +0200 @@ -1,3 +1,6 @@ +;;; Copyright 2009 Tobias Rautenkranz +;;; License: X11 license + (in-package :qt.examples) (defun i18n-hello-world () diff -rN -u old-qt.examples/src/launcher.lisp new-qt.examples/src/launcher.lisp --- old-qt.examples/src/launcher.lisp 2014-10-07 00:17:49.000000000 +0200 +++ new-qt.examples/src/launcher.lisp 2014-10-07 00:17:49.000000000 +0200 @@ -1,3 +1,6 @@ +;;; Copyright 2009 Tobias Rautenkranz +;;; License: X11 license + (in-package :qt.examples) (defclass launcher (qt:widget) diff -rN -u old-qt.examples/src/package.lisp new-qt.examples/src/package.lisp --- old-qt.examples/src/package.lisp 2014-10-07 00:17:49.000000000 +0200 +++ new-qt.examples/src/package.lisp 2014-10-07 00:17:49.000000000 +0200 @@ -1,3 +1,6 @@ +;;; Copyright 2009 Tobias Rautenkranz +;;; License: X11 license + (defpackage #:qt.examples (:use #:cl #:cxx-support) (:export #:hello-world diff -rN -u old-qt.examples/src/repl.lisp new-qt.examples/src/repl.lisp --- old-qt.examples/src/repl.lisp 2014-10-07 00:17:49.000000000 +0200 +++ new-qt.examples/src/repl.lisp 2014-10-07 00:17:49.000000000 +0200 @@ -1,3 +1,6 @@ +;;; Copyright 2009 Tobias Rautenkranz +;;; License: X11 license + (in-package :qt.examples) (defclass repl (qt:widget) diff -rN -u old-qt.examples/src/tick-tack-toe.lisp new-qt.examples/src/tick-tack-toe.lisp --- old-qt.examples/src/tick-tack-toe.lisp 2014-10-07 00:17:49.000000000 +0200 +++ new-qt.examples/src/tick-tack-toe.lisp 2014-10-07 00:17:49.000000000 +0200 @@ -1,3 +1,6 @@ +;;; Copyright 2009 Tobias Rautenkranz +;;; License: X11 license + (in-package :qt.examples) (declaim (optimize (debug 3))) diff -rN -u old-qt.examples/src/ui.lisp new-qt.examples/src/ui.lisp --- old-qt.examples/src/ui.lisp 2014-10-07 00:17:49.000000000 +0200 +++ new-qt.examples/src/ui.lisp 2014-10-07 00:17:49.000000000 +0200 @@ -1,3 +1,6 @@ +;;; Copyright 2009 Tobias Rautenkranz +;;; License: X11 license + (in-package :qt.examples) (defun load-ui-file ()