Skip to content

Commit

Permalink
gral_window_show_context_menu
Browse files Browse the repository at this point in the history
  • Loading branch information
eyelash committed Sep 2, 2024
1 parent 9a892cd commit b5e2afd
Show file tree
Hide file tree
Showing 5 changed files with 53 additions and 0 deletions.
11 changes: 11 additions & 0 deletions demos/events.c
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,17 @@ static void mouse_button_press(float x, float y, int button, int modifiers, void
gral_timer_delete(demo->timer);
demo->timer = 0;
}
if (button == GRAL_SECONDARY_MOUSE_BUTTON) {
static struct gral_menu_item items[] = {
{"First"},
{"Second"},
{"Third"},
{"-"},
{"Last"},
{NULL}
};
gral_window_show_context_menu(demo->window, x, y, items);
}
}

static void mouse_button_release(float x, float y, int button, void *user_data) {
Expand Down
4 changes: 4 additions & 0 deletions gral.h
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,9 @@ struct gral_window_interface {
void (*focus_enter)(void *user_data);
void (*focus_leave)(void *user_data);
};
struct gral_menu_item {
char const *text;
};
struct gral_timer;
struct gral_file;
struct gral_directory_watcher;
Expand Down Expand Up @@ -157,6 +160,7 @@ void gral_window_show_open_file_dialog(struct gral_window *window, void (*callba
void gral_window_show_save_file_dialog(struct gral_window *window, void (*callback)(char const *file, void *user_data), void *user_data);
void gral_window_clipboard_copy(struct gral_window *window, char const *text);
void gral_window_clipboard_paste(struct gral_window *window, void (*callback)(char const *text, void *user_data), void *user_data);
void gral_window_show_context_menu(struct gral_window *window, float x, float y, struct gral_menu_item *items);

struct gral_timer *gral_timer_create(int milliseconds, void (*callback)(void *user_data), void *user_data);
void gral_timer_delete(struct gral_timer *timer);
Expand Down
19 changes: 19 additions & 0 deletions gral_linux.c
Original file line number Diff line number Diff line change
Expand Up @@ -638,6 +638,25 @@ void gral_window_clipboard_paste(struct gral_window *window, void (*callback)(ch
gtk_clipboard_request_text(clipboard, paste_callback, callback_data);
}

void gral_window_show_context_menu(struct gral_window *window, float x, float y, struct gral_menu_item *items) {
GtkWidget *area = gtk_bin_get_child(GTK_BIN(window));
GtkWidget *menu = gtk_menu_new();
gtk_menu_attach_to_widget(GTK_MENU(menu), area, NULL);
for (; items->text; ++items) {
GtkWidget *item;
if (items->text[0] == '-') {
item = gtk_separator_menu_item_new();
}
else {
item = gtk_menu_item_new_with_label(items->text);
}
gtk_menu_shell_append(GTK_MENU_SHELL(menu), item);
}
gtk_widget_show_all(menu);
GdkRectangle rect = {x, y, 1, 1};
gtk_menu_popup_at_rect(GTK_MENU(menu), gtk_widget_get_window(area), &rect, GDK_GRAVITY_SOUTH_EAST, GDK_GRAVITY_NORTH_WEST, NULL);
}

typedef struct {
void (*callback)(void *user_data);
void *user_data;
Expand Down
4 changes: 4 additions & 0 deletions gral_macos.m
Original file line number Diff line number Diff line change
Expand Up @@ -667,6 +667,10 @@ void gral_window_clipboard_paste(struct gral_window *window, void (*callback)(ch
}
}

void gral_window_show_context_menu(struct gral_window *window, float x, float y, struct gral_menu_item *items) {
// TODO: implement
}

@interface TimerCallbackObject: NSObject {
@public
void (*callback)(void *user_data);
Expand Down
15 changes: 15 additions & 0 deletions gral_windows.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1054,6 +1054,21 @@ void gral_window_clipboard_paste(gral_window *window, void (*callback)(char cons
CloseClipboard();
}

void gral_window_show_context_menu(gral_window *window, float x, float y, gral_menu_item *items) {
HMENU menu;
menu = CreatePopupMenu();
for (; items->text; ++items) {
MENUITEMINFO item;
if (items->text[0] == '-') {
}
else {
}
//InsertMenuItem(menu, );
}
TPMPARAMS params;
TrackPopupMenuEx(menu, 0, x, y, (HWND)window, &params);
}

static void CALLBACK timer_completion_routine(LPVOID lpArgToCompletionRoutine, DWORD dwTimerLowValue, DWORD dwTimerHighValue) {
gral_timer *timer = (gral_timer *)lpArgToCompletionRoutine;
timer->callback(timer->user_data);
Expand Down

0 comments on commit b5e2afd

Please sign in to comment.