aboutsummaryrefslogtreecommitdiffstats
path: root/doc/examples/gtk/readme.txt
diff options
context:
space:
mode:
authorlloyd <[email protected]>2011-04-08 18:07:12 +0000
committerlloyd <[email protected]>2011-04-08 18:07:12 +0000
commit3b66bfd4da97189ec275e5f85b9f85009d3f8370 (patch)
tree2f8604f15164f792069db465f9b07e55ada79761 /doc/examples/gtk/readme.txt
parentfc62f7f284387a180e42402e8706965a666efba7 (diff)
Drop the GTK example; it probably makes more sense to use threads
for things like this, and the User_Interface class is going to die as soon as I can manage it, anyway.
Diffstat (limited to 'doc/examples/gtk/readme.txt')
-rw-r--r--doc/examples/gtk/readme.txt18
1 files changed, 0 insertions, 18 deletions
diff --git a/doc/examples/gtk/readme.txt b/doc/examples/gtk/readme.txt
deleted file mode 100644
index 4f3691166..000000000
--- a/doc/examples/gtk/readme.txt
+++ /dev/null
@@ -1,18 +0,0 @@
-
-This is an example of how to use Botan in a GUI. You need at least
-Botan 1.6.0.
-
-You'll also need GTK+ 2.x (tested with GTK+ 2.10; should work with
-most versions). Keep in mind that I was learning GTK as I was writing
-this code, so it is not exactly the best GTK code you're likely to
-see.
-
-dsa.cpp is the main GTK+ driver. It has some comments at the top which
-point out major areas of interest.
-
-gtk_ui.* implement a User_Interface object that opens up a GTK+ dialog
-box that asks the user for their passphrase. It works pretty well, the
-only major deficiency is a fixed upper limit on the size of the
-passphrase (currently 64). You may want to use this in your own code,
-assuming you use GTK. If not, it should at least provide an outline
-for writing a version for your favorite windowing system.