all repos — tint2 @ main

fork of the tint2 desktop panel for my custom setup - only minimized windows across all desktops for the taskbar

src/mouse_actions.h (raw)

1
2
3
4
5
6
7
8
9
10
11
12
#ifndef MOUSE_ACTIONS_H
#define MOUSE_ACTIONS_H

#include "panel.h"

gboolean tint2_handles_click(Panel *panel, XButtonEvent *e);

void handle_mouse_press_event(XEvent *e);
void handle_mouse_move_event(XEvent *e);
void handle_mouse_release_event(XEvent *e);

#endif