Gtkd is a D binding and OO wrapper for the GTK+ toolkit.

learn more… | top users | synonyms

0
votes
0answers
16 views

GtkD noob: Executable broken after linking with GtkD.lib

I've installed all combinations of GtkD with the Gtk-Runtime found here: https://code.google.com/p/gtkd-packages/downloads/list except for trying GtkD 1.7.2 because it had errors on build. My setup ...
2
votes
1answer
115 views

Key Input using GtkD

I'm a beginner of both gtk and GtkD. Now, I'm trying to get input from keyboard with reference to this . But, It seems that three years have made some changes in Toolkits. I wrote code below. However, ...
0
votes
1answer
64 views

SOLVED: catch mouse press event on Notebook without touching tabs and their contents

I'm programming in gtkD on Funtoo Linux. I want to catch mouse press event in Notebook, but I would like to don't touch the tabs and their contents. I'm using function: addOnButtonPress () in ...
0
votes
1answer
70 views

What is the difference between MainWindows show() and showAll() method in GtkD?

Here is my test: import gtk.Main; import gtk.MainWindow; import gtk.Label; void main(string[] args) { Main.init(args); auto window = new MainWindow("My Window"); window.add(new ...
3
votes
1answer
115 views

Can't compile GtkD SourceView code

I am new to gtk programming and d and learning using demos from gtkd source. when i try to compile the code below [ i am using dmd-2.060 and gtkd-2.0 on archlinux ]. /* Modified sourceview demo ...
0
votes
2answers
316 views

Using GtkD on Linux, how do i statically link the compiled library?

This is kind of linked to this question here: GtkD (the Gtk+bindings for the D language) why compile it? I'm using GtkD with the D programming language on Ubuntu 12.04 and i'm stuck trying to ...
1
vote
2answers
270 views

GtkD (the Gtk+bindings for the D language) why compile it?

I've recently been using GtkD with the D programming language to create native applications. I've downloaded all the necessary files and got everything running so i can now compile and produce sample ...
1
vote
2answers
387 views

gtkentry focus behaviour

Is there any existing mechanism for a GtkEntry to simply position the cursor at the end of the text when focused, rather than selecting its contents to be overwritten by the next key? It seems odd to ...
1
vote
2answers
163 views

gtkd performance issue when adding a lot of textviews at once

Here's a minimal example to illustrate the problem. When the button is clicked, 500 TextView objects should get added, each containing some text. What actually happens is that there is a short delay, ...
8
votes
5answers
733 views

How to use gtkD in Win7 and dmd (D2)?

I downloaded gtkD-1.5.1 and extracted to some gtkD directory. What do I do next ? I don't understand if I have to compile and link it to some lib or just link to it in my code ? Edit: (@dsimcha) ...
2
votes
1answer
160 views

Gtk/GtkD Detect release of mouse button on window resize?

I'm trying to improve a plotting library that I wrote with GtkD (the D bindings for Gtk). Scatter plots with a lot of points take a long time to resize. I want to rescale the image, allowing ...
1
vote
1answer
163 views

Multithreaded application with gtkD

I'm playing with gtkD for a while, and I'm learning D2/Phobos in parallel. Yesterday I was looking up the std.concurrency module and tried to write a toy multithreaded fractal viewer, but the problem ...
3
votes
4answers
615 views

getting started with gtkd

I'm new to D, and want to experiment with gtkd. I'm on arch linux, and installed the dmd2-complete (dmd 2.0.56) and gtkd-svn (gtkd built against D2) packages. I also verified that D itself was ...
5
votes
2answers
846 views

Setting up a working D2.x toolchain (with gtkd) on Ubuntu 10.04

I've been playing around with D for a few days and was getting quite excited about it until, that is, I tried to get gtkd working. I've now wasted the best part of 3 days trying to get a working setup ...
1
vote
0answers
883 views

DLL Hell: SnacNp64.dll + gtkD

Apparently when I run some 32-bit apps I created using gtkD on Win64 systems with Symantec Endpoint Protection installed and network drives mapped, and try to bring up a file dialog, something in the ...
1
vote
2answers
391 views

GTK: How to ignore “can't open display” errors?

I have written some GTK programs using the gtkD bindings for the D programming language that are otherwise console apps, but are capable of displaying plots on the screen and saving them to a file. ...
6
votes
1answer
991 views

gtkD: Minimal Drawing Example?

I'm a fairly experienced programmer, but new to GUI programming. I'm trying to port a plotting library I wrote for DFL to gtkD, and I can't get drawings to show up. The following code produces a ...
5
votes
3answers
387 views

In D, how to pass an empty string? (to gtkD)

Using D1 with phobos I have a text entry field, instance of gtk.Entry.Entry, calling setText("") raises a run time error Gtk-CRITICAL **: gtk_entry_set_text: assertion `text != NULL' failed Why? ...
2
votes
1answer
583 views

Handling key presses in GTK+ (gtkD)

I'm playing around with gtkD (a D binding for GTK+) I have a window object, instance of gtk.MainWindow. I want to handle keypresses on it. How? How do I deal with special keys (e.g. arrow keys, ...