Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2015-08-24 | Fixing clipping mode | Camil Staps | 1 | -2/+1 | |
2015-08-24 | Fixing winPlaySound | Camil Staps | 1 | -3/+11 | |
There doesn't seem to be a straightforward universal way to play a wav file on Linux. If someone has pulseaudio installed, this command now simply does a system() call with `paplay ...`. This fails if the program is not installed, but in any case a True success bool is re- turned. Ideally, we wouldn't need system() (which forces us to include stdlib.h), and would just use a library for this - but I didn't find one at the moment. See: http://unix.stackexchange.com/a/8610/37050 | |||||
2015-08-24 | Resizing bitmaps | Camil Staps | 1 | -31/+11 | |
2015-08-24 | Ugly hack to get winCreateBitmap to work | Camil Staps | 2 | -9/+18 | |
Typically, we would do this with gdk_pixbuf_from_file(). However, the openBitmap function from StdBitmap only gives us a *File, not the file name. So, we cannot read from the file itself directly. Therefore, we now create a temporary file with the same content and read from there. Ideally, StdBitmap would be edited to pass both a *File and a !{#Char} with the file name (or just the latter, and let osbitmap decide what to do with it). | |||||
2015-08-21 | Implemented GETCLIPBOARDCOUNT; fix C warning | Camil Staps | 2 | -1/+13 | |
2015-08-21 | Renaming SetWindowSize to SetWidgetSize as it is generic for all GtkWidgets | Camil Staps | 2 | -4/+4 | |
2015-08-21 | Fixing unchecked casts | Camil Staps | 2 | -15/+11 | |
2015-08-21 | Fixing unsafe cast to GtkCheckMenuItem | Camil Staps | 1 | -1/+2 | |
2015-08-21 | Keyboard shortcuts working | Camil Staps | 1 | -46/+24 | |
2015-08-21 | Fixing hmm and similar functions | Camil Staps | 1 | -28/+2 | |
2015-08-21 | Cleaning up | Camil Staps | 4 | -15/+5 | |
2015-08-21 | Clean String generation security and fix | Camil Staps | 1 | -5/+7 | |
2015-08-21 | Code style | Camil Staps | 2 | -40/+18 | |
2015-08-21 | Fixed making clean strings (winGetCString and winGetCStringAndFree; ↵ | Camil Staps | 1 | -1/+1 | |
clean_string struct) on 64-bit machines | |||||
2015-08-19 | To mimic the Windows library, WinGetTime now returns the local time rather ↵ | Camil Staps | 1 | -1/+1 | |
than the UTC time | |||||
2015-08-19 | Fixes issue with Tut 8.5 (segfault on creating new MDI window) | Camil Staps | 1 | -2/+6 | |
2015-08-19 | Cleaner makefile | Camil Staps | 1 | -18/+20 | |
2015-08-12 | Get rid of all the tabs. So annoying. | Camil Staps | 23 | -5166/+5166 | |
2015-08-12 | Fixed crashes with windows | Camil Staps | 2 | -599/+603 | |
2015-08-12 | Removed some casting warnings | Camil Staps | 3 | -5/+5 | |
2015-08-10 | Fixed winDonePicture | Camil Staps | 2 | -24/+3 | |
2015-08-07 | Fixed some issues with strings | Camil Staps | 4 | -17/+21 | |
2015-07-08 | Debugging; word sizes (Int -> pointer); fix CleanStrings | Camil Staps | 5 | -53/+58 | |
2015-07-06 | Casting warnings | Camil Staps | 8 | -71/+73 | |
2015-07-06 | Library malloc fix | Camil Staps | 1 | -1/+1 | |
2015-07-06 | Makefile, gitignore | Camil Staps | 2 | -0/+22 | |
2015-07-01 | Initial commit | Camil Staps | 36 | -0/+12240 | |