Repository

VGTK3 GitHub Workflow Status (branch) GitHub release (latest by date)

What is this?

This is a manual wrapper for gtk3 for V. The advantage compared to using C.<function> directly is that vgtk3 uses V structs and does it best to have a good V style when "translating" gtk3 to V. This is mostly why the functions aren't auto-generated, as this doesn't create any helpful structures nor does it splits the files, because it doesn't know what a container is, this wrapper knows it and offers a Container interface ready for use.

Notes: We are still combining everything together here, will be separated after everything is finished

Dependencies

  • gtk3 development package
  • pkgconfig

Get Started

module main

import gtk

fn main() {
    window := gtk.new_window()
    window.set_title('Window Title')
    window.set_default_size(500, 600)
    window.set_position(.center)
    window.show()
    gtk.main()
}

Examples

Please checkout the examples folder. To compile all examples, simply run make examples command.

Progress

  • GTK
    • AccelMap
    • ActionBar
    • Application
    • Box
    • Button
    • ComboBox
    • Container
    • Dialog
    • Entry
    • Grid
    • Image
    • Label
    • Menu
    • MenuItem
    • WidgetPath
    • Widget
    • Window
  • GDK
    • Device
    • Window
  • GIO
    • File
  • GLIB
    • Array
    • List
    • Node
    • SList
    • String

Notes

  • You need the latest GTK+ installed.

License

Gtk is available under the MIT License, please refer to it.

About

0
149
last May 7

Author

zenith391