Skip to content

WIP - Add ccall API for missing GtkRadioMenuItem, GtkImageMenuItem, GtkCheckMenuItem #510

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions gen/gtk_get_set_gen.jl
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@ const GtkTypeMap = Set{Symbol}([
:GtkListStore,
:GtkMenu,
:GtkMenuItem,
:GtkRadioMenuItem,
:GtkImageMenuItem,
:GtkCheckMenuItem,
:GtkMenuToolButton,
:GtkMessageDialog,
:GtkNativeDialog,
Expand Down
3 changes: 3 additions & 0 deletions src/gtktypes.jl
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,9 @@ end
@gtktype GtkCellView
@gtktype GtkIconView
@gtktype GtkMenuItem
@gtktype GtkRadioMenuItem
@gtktype GtkImageMenuItem
@gtktype GtkCheckMenuItem
@gtktype GtkSeparatorMenuItem
@gtktype GtkMenu
@gtktype GtkMenuBar
Expand Down
3 changes: 3 additions & 0 deletions src/long_exports.jl
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ export GObject,
GtkMenu,
GtkMenuBar,
GtkMenuItem,
GtkRadioMenuItem,
GtkImageMenuItem,
GtkCheckMenuItem,
GtkMenuToolButton,
GtkMessageDialog,
GtkNativeDialog,
Expand Down
6 changes: 6 additions & 0 deletions src/long_leaf_exports.jl
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ export
@GtkMenu,
@GtkMenuBar,
@GtkMenuItem,
@GtkRadioMenuItem,
@GtkImageMenuItem,
@GtkCheckMenuItem,
@GtkMenuToolButton,
@GtkMessageDialog,
@GtkNativeDialog,
Expand Down Expand Up @@ -117,6 +120,9 @@ export
GtkMenuLeaf,
GtkMenuBarLeaf,
GtkMenuItemLeaf,
GtkRadioMenuItemLeaf,
GtkImageMenuItemLeaf,
GtkCheckMenuItemLeaf,
GtkMenuToolButtonLeaf,
GtkMessageDialogLeaf,
GtkNotebookLeaf,
Expand Down
3 changes: 3 additions & 0 deletions src/short_exports.jl
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@ const ListStore = GtkListStore
const Menu = GtkMenu
const MenuBar = GtkMenuBar
const MenuItem = GtkMenuItem
const RadioMenuItem = GtkRadioMenuItem
const ImageMenuItem = GtkImageMenuItem
const CheckMenuItem = GtkCheckMenuItem
const MenuToolButton = GtkMenuToolButton
const MessageDialog = GtkMessageDialog
const NativeDialog = GtkNativeDialog
Expand Down
3 changes: 3 additions & 0 deletions src/short_leaf_exports.jl
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@
@g_type_delegate Menu = GtkMenu
@g_type_delegate MenuBar = GtkMenuBar
@g_type_delegate MenuItem = GtkMenuItem
@g_type_delegate RadioMenuItem = GtkRadioMenuItem
@g_type_delegate ImageMenuItem = GtkImageMenuItem
@g_type_delegate CheckMenuItem = GtkCheckMenuItem
@g_type_delegate MenuToolButton = GtkMenuToolButton
@g_type_delegate MessageDialog = GtkMessageDialog
@g_type_delegate Notebook = GtkNotebook
Expand Down