Browse Source

Moved GUI stuff over to its own file

Samuel W. Flint 7 years ago
parent
commit
89d232c59b
2 changed files with 78 additions and 29 deletions
  1. 78 0
      larcs-gui.org
  2. 0 29
      lisp-cas.org

+ 78 - 0
larcs-gui.org

@@ -0,0 +1,78 @@
+#+Title: LARCS GUI
+#+Subtitle: Graphical Interaction with the LARCS system
+#+AUTHOR: Samuel W. Flint
+#+EMAIL: swflint@flintfam.org
+#+DATE: <2016-08-20 Sat 13:52>
+#+INFOJS_OPT: view:info toc:nil path:http://flintfam.org/org-info.js
+#+OPTIONS: toc:nil H:5 ':t *:t todo:nil stat:nil d:nil
+#+PROPERTY: header-args :noweb tangle :comments noweb
+#+LATEX_HEADER: \usepackage[margins=0.75in]{geometry}
+#+LATEX_HEADER: \parskip=5pt
+#+LATEX_HEADER: \parindent=0pt
+#+LATEX_HEADER: \lstset{texcl=true,breaklines=true,columns=fullflexible,basicstyle=\ttfamily,frame=lines,literate={<=}{$\leq$}1 {>=}{$\geq$}1}
+#+LATEX_CLASS_OPTIONS: [10pt,twoside]
+#+LATEX_HEADER: \pagestyle{headings}
+
+* Export                                                           :noexport:
+:PROPERTIES:
+:CREATED:  <2016-08-20 Sat 13:52>
+:END:
+
+#+Caption: Export Document
+#+Name: export-document
+#+BEGIN_SRC emacs-lisp :exports none :results none
+(save-buffer)
+(let ((org-confirm-babel-evaluate
+(lambda (lang body)
+(declare (ignorable lang body))
+nil)))
+(org-latex-export-to-pdf))
+#+END_SRC
+
+* Tangle                                                           :noexport:
+:PROPERTIES:
+:CREATED:  <2016-08-20 Sat 13:52>
+:END:
+
+#+Caption: Tangle Document
+#+Name: tangle-document
+#+BEGIN_SRC emacs-lisp :exports none :results none
+(save-buffer)
+(let ((python-indent-offset 4))
+(org-babel-tangle))
+#+END_SRC
+
+* TODO Introduction
+:PROPERTIES:
+:CREATED:  <2016-08-20 Sat 13:52>
+:UNNUMBERED: t
+:END:
+
+* TOC                                                                :ignore:
+
+#+TOC: headlines 3
+#+TOC: listings
+
+* TODO System Definition
+:PROPERTIES:
+:CREATED:  <2016-06-13 Mon 14:51>
+:END:
+
+#+Caption: GUI System Definition
+#+Name: gui-system-definition
+#+BEGIN_SRC lisp
+  '(#:alexandria
+    #:command-line-arguments
+    #:commonqt)
+#+END_SRC
+
+* TODO Interface Elements
+:PROPERTIES:
+:CREATED:  <2016-06-13 Mon 14:52>
+:END:
+
+* TODO Interface Functionality
+:PROPERTIES:
+:CREATED:  <2016-06-13 Mon 14:52>
+:END:
+

+ 0 - 29
lisp-cas.org

@@ -2475,35 +2475,6 @@ The final assembly of this portion of the system is as simple as the rest, resol
                  (:file "larcs-typeset")))
 #+END_SRC
 
-* WORKING Graphical User Interface [0/3]                           :noexport:
-:PROPERTIES:
-:CREATED:  <2016-06-13 Mon 14:51>
-:ID:       b70027f8-a665-4282-ab4b-3d0ce6bd8d17
-:END:
-
-** TODO System Definition
-:PROPERTIES:
-:CREATED:  <2016-06-13 Mon 14:51>
-:END:
-
-#+Caption: GUI System Definition
-#+Name: gui-system-definition
-#+BEGIN_SRC lisp
-  '(#:alexandria
-    #:command-line-arguments
-    #:commonqt)
-#+END_SRC
-
-** TODO Interface Elements
-:PROPERTIES:
-:CREATED:  <2016-06-13 Mon 14:52>
-:END:
-
-** TODO Interface Functionality
-:PROPERTIES:
-:CREATED:  <2016-06-13 Mon 14:52>
-:END:
-
 * Push to bottom                                                     :ignore:
 :PROPERTIES:
 :CREATED:  <2016-07-17 Sun 13:58>