-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1234 from 4e554c4c/tray
Implement Tray Icons
- Loading branch information
Showing
37 changed files
with
2,747 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
# - Try to find DBus | ||
# Once done, this will define | ||
# | ||
# DBUS_FOUND - system has DBus | ||
# DBUS_INCLUDE_DIRS - the DBus include directories | ||
# DBUS_LIBRARIES - link these to use DBus | ||
# | ||
# Copyright (C) 2012 Raphael Kubo da Costa <rakuco@webkit.org> | ||
# | ||
# Redistribution and use in source and binary forms, with or without | ||
# modification, are permitted provided that the following conditions | ||
# are met: | ||
# 1. Redistributions of source code must retain the above copyright | ||
# notice, this list of conditions and the following disclaimer. | ||
# 2. Redistributions in binary form must reproduce the above copyright | ||
# notice, this list of conditions and the following disclaimer in the | ||
# documentation and/or other materials provided with the distribution. | ||
# | ||
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER AND ITS CONTRIBUTORS ``AS | ||
# IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, | ||
# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | ||
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR ITS | ||
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, | ||
# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, | ||
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; | ||
# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, | ||
# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR | ||
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF | ||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
|
||
FIND_PACKAGE(PkgConfig) | ||
PKG_CHECK_MODULES(PC_DBUS QUIET dbus-1) | ||
|
||
FIND_LIBRARY(DBUS_LIBRARIES | ||
NAMES dbus-1 | ||
HINTS ${PC_DBUS_LIBDIR} | ||
${PC_DBUS_LIBRARY_DIRS} | ||
) | ||
|
||
FIND_PATH(DBUS_INCLUDE_DIR | ||
NAMES dbus/dbus.h | ||
HINTS ${PC_DBUS_INCLUDEDIR} | ||
${PC_DBUS_INCLUDE_DIRS} | ||
) | ||
|
||
GET_FILENAME_COMPONENT(_DBUS_LIBRARY_DIR ${DBUS_LIBRARIES} PATH) | ||
FIND_PATH(DBUS_ARCH_INCLUDE_DIR | ||
NAMES dbus/dbus-arch-deps.h | ||
HINTS ${PC_DBUS_INCLUDEDIR} | ||
${PC_DBUS_INCLUDE_DIRS} | ||
${_DBUS_LIBRARY_DIR} | ||
${DBUS_INCLUDE_DIR} | ||
PATH_SUFFIXES include | ||
) | ||
|
||
SET(DBUS_INCLUDE_DIRS ${DBUS_INCLUDE_DIR} ${DBUS_ARCH_INCLUDE_DIR}) | ||
|
||
INCLUDE(FindPackageHandleStandardArgs) | ||
FIND_PACKAGE_HANDLE_STANDARD_ARGS(DBUS REQUIRED_VARS DBUS_INCLUDE_DIRS DBUS_LIBRARIES) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
#ifndef _SWAYBAR_EVENT_LOOP_H | ||
#define _SWAYBAR_EVENT_LOOP_H | ||
|
||
#include <stdbool.h> | ||
#include <time.h> | ||
|
||
void add_event(int fd, short mask, | ||
void(*cb)(int fd, short mask, void *data), | ||
void *data); | ||
|
||
// Not guaranteed to notify cb immediately | ||
void add_timer(timer_t timer, | ||
void(*cb)(timer_t timer, void *data), | ||
void *data); | ||
|
||
// Returns false if nothing exists, true otherwise | ||
bool remove_event(int fd); | ||
|
||
// Returns false if nothing exists, true otherwise | ||
bool remove_timer(timer_t timer); | ||
|
||
// Blocks and returns after sending callbacks | ||
void event_loop_poll(); | ||
|
||
void init_event_loop(); | ||
#endif /*_SWAYBAR_EVENT_LOOP_H */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#ifndef _SWAYBAR_DBUS_H | ||
#define _SWAYBAR_DBUS_H | ||
|
||
#include <stdbool.h> | ||
#include <dbus/dbus.h> | ||
extern DBusConnection *conn; | ||
|
||
/** | ||
* Should be called in main loop to dispatch events | ||
*/ | ||
void dispatch_dbus(); | ||
|
||
/** | ||
* Initializes async dbus communication | ||
*/ | ||
int dbus_init(); | ||
|
||
#endif /* _SWAYBAR_DBUS_H */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#ifndef _SWAYBAR_ICON_H | ||
#define _SWAYBAR_ICON_H | ||
|
||
#include <stdint.h> | ||
#include <stdbool.h> | ||
#include <client/cairo.h> | ||
|
||
/** | ||
* Returns the image found by `name` that is closest to `size` | ||
*/ | ||
cairo_surface_t *find_icon(const char *name, int size); | ||
|
||
/* Struct used internally only */ | ||
struct subdir; | ||
|
||
#endif /* _SWAYBAR_ICON_H */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
#ifndef _SWAYBAR_SNI_H | ||
#define _SWAYBAR_SNI_H | ||
|
||
#include <stdbool.h> | ||
#include <client/cairo.h> | ||
|
||
struct StatusNotifierItem { | ||
/* Name registered to sni watcher */ | ||
char *name; | ||
/* Unique bus name, needed for determining signal origins */ | ||
char *unique_name; | ||
bool kde_special_snowflake; | ||
|
||
cairo_surface_t *image; | ||
bool dirty; | ||
}; | ||
|
||
/* Each output holds an sni_icon_ref of each item to render */ | ||
struct sni_icon_ref { | ||
cairo_surface_t *icon; | ||
struct StatusNotifierItem *ref; | ||
}; | ||
|
||
struct sni_icon_ref *sni_icon_ref_create(struct StatusNotifierItem *item, | ||
int height); | ||
|
||
void sni_icon_ref_free(struct sni_icon_ref *sni_ref); | ||
|
||
/** | ||
* Will return a new item and get its icon. (see warning below) | ||
*/ | ||
struct StatusNotifierItem *sni_create(const char *name); | ||
|
||
/** | ||
* `item` must be a struct StatusNotifierItem * | ||
* `str` must be a NUL terminated char * | ||
* | ||
* Returns 0 if `item` has a name of `str` | ||
*/ | ||
int sni_str_cmp(const void *item, const void *str); | ||
|
||
/** | ||
* Returns 0 if `item` has a unique name of `str` or if | ||
* `item->unique_name == NULL` | ||
*/ | ||
int sni_uniq_cmp(const void *item, const void *str); | ||
|
||
/** | ||
* Gets an icon for the given item if found. | ||
* | ||
* XXX | ||
* This function keeps a reference to the item until it gets responses, make | ||
* sure that the reference and item are valid during this time. | ||
*/ | ||
void get_icon(struct StatusNotifierItem *item); | ||
|
||
/** | ||
* Calls the "activate" method on the given StatusNotifierItem | ||
* | ||
* x and y should be where the item was clicked | ||
*/ | ||
void sni_activate(struct StatusNotifierItem *item, uint32_t x, uint32_t y); | ||
|
||
/** | ||
* Asks the item to draw a context menu at the given x and y coords | ||
*/ | ||
void sni_context_menu(struct StatusNotifierItem *item, uint32_t x, uint32_t y); | ||
|
||
/** | ||
* Calls the "secondary activate" method on the given StatusNotifierItem | ||
* | ||
* x and y should be where the item was clicked | ||
*/ | ||
void sni_secondary(struct StatusNotifierItem *item, uint32_t x, uint32_t y); | ||
|
||
/** | ||
* Deconstructs `item` | ||
*/ | ||
void sni_free(struct StatusNotifierItem *item); | ||
|
||
#endif /* _SWAYBAR_SNI_H */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#ifndef _SWAYBAR_SNI_WATCHER_H | ||
#define _SWAYBAR_SNI_WATCHER_H | ||
|
||
/** | ||
* Starts the sni_watcher, the watcher is practically a black box and should | ||
* only be accessed though functions described in its spec | ||
*/ | ||
int init_sni_watcher(); | ||
|
||
#endif /* _SWAYBAR_SNI_WATCHER_H */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
#ifndef _SWAYBAR_TRAY_H | ||
#define _SWAYBAR_TRAY_H | ||
|
||
#include <stdint.h> | ||
#include <stdbool.h> | ||
#include "swaybar/tray/dbus.h" | ||
#include "swaybar/tray/sni.h" | ||
#include "swaybar/bar.h" | ||
#include "list.h" | ||
|
||
extern struct tray *tray; | ||
|
||
struct tray { | ||
list_t *items; | ||
}; | ||
|
||
/** | ||
* Processes a mouse event on the bar | ||
*/ | ||
void tray_mouse_event(struct output *output, int x, int y, | ||
uint32_t button, uint32_t state); | ||
|
||
uint32_t tray_render(struct output *output, struct config *config); | ||
|
||
void tray_upkeep(struct bar *bar); | ||
|
||
/** | ||
* Initializes the tray with D-Bus | ||
*/ | ||
void init_tray(); | ||
|
||
#endif /* _SWAYBAR_TRAY_H */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.