summary refs log tree commit diff stats
path: root/lib/wrappers/gtk/glib2.nim
Commit message (Collapse)AuthorAgeFilesLines
* objects with no ancestor are not implicitely finalAraq2012-08-241-3/+3
|
* os.JoinPath now uses varargs. Some additions to gtk wrappers.Dominik Picheta2012-08-191-0/+3
|
* g_timeout_add_full and g_idle_add_full added.Dominik Picheta2012-07-301-0/+16
|
* preparations for making 'closure' the default calling convention for proc typesAraq2012-07-161-1/+1
|
* Added a couple of GTK 2.12 functions.Dominik Picheta2011-12-181-0/+6
|
* bugfixes; step one for 'var T' as return type supportAraq2011-07-281-0/+2
|
* tests repaired; serious typo in the allocator fixed; fixes #32Araq2011-07-221-0/+4
|
* p[] instead of p^Araq2011-04-111-3/+3
|
* more fixes for dy(n)lib typo; fixes #15Araq2011-03-081-0/+5
|
* versioning for GTK wrappersAndreas Rumpf2010-03-201-3/+3
|
* further enhancements for the GTK wrapperAndreas Rumpf2010-03-011-0/+4498
|
* examples/lib use the new wrappersAndreas Rumpf2010-02-281-4503/+0
|
* fixed pango/pangoutils new wrappersAndreas Rumpf2010-02-261-0/+0
|
* continued work on html/xmlparserrumpf_a@web.de2010-02-141-0/+0
|
* wrappers do not contain invalid identifiersAndreas Rumpf2010-01-171-21/+22
|
* added tools and web dirsAndreas Rumpf2009-09-151-0/+0
|
* version0.7.10Andreas Rumpf2009-06-081-0/+4502
span class="mi">4) file.setFilePos(0) let data = await file.readAll() doAssert data == "foot" file.close() # Append test block: var file = openAsync(fn, fmAppend) await file.write("\ntest2") let errorTest = file.readAll() yield errorTest doAssert errorTest.failed file.close() file = openAsync(fn, fmRead) let data = await file.readAll() doAssert data == "foot\ntest2" file.close() # Issue #5531 block: removeFile(fn) var file = openAsync(fn, fmWrite) await file.write("test2") file.close() file = openAsync(fn, fmWrite) await file.write("t3") file.close() file = openAsync(fn, fmRead) let data = await file.readAll() doAssert data == "t3" file.close() # Issue #7347 block: var file = openAsync( parentDir(currentSourcePath) / "hello.txt") echo file.getFileSize() echo await file.readAll() echo file.getFilePos() waitFor main()