On Tue, 08 Nov 2016 15:22:40 GMT, Gerald Nunn wrote:

Personally, I just define my own enum for this:

/**
 * Defined here since not defined in GtkD
 */
enum MouseButton : uint {
    PRIMARY = 1,
    MIDDLE = 2,
    SECONDARY = 3
}

Thanks Gerald, that's what i'll do then, i guess.