Skip to content

Commit

Permalink
Added cipher interface.
Browse files Browse the repository at this point in the history
  • Loading branch information
tyalt1 committed Apr 20, 2015
1 parent d15053d commit 6b6e6ce
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions BankClient.rkt
Original file line number Diff line number Diff line change
Expand Up @@ -83,5 +83,12 @@
(send amount-text set-value "")
(set! active-account nil)))]))

(define cipher-panel (new vertical-panel% [parent balance-panel]))
(define cipher-choice (new choice% [label "Type of Cipher"]
[parent cipher-panel]
[choices (list "Caesar" "Vignere")]))
(define cipher-text (new text-field% [label "Cipher Data"]
[parent cipher-panel]))

#|SHOW WINDOW|#
(send window show #t)

0 comments on commit 6b6e6ce

Please sign in to comment.