summaryrefslogtreecommitdiffstats
path: root/include/rofi.h
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2015-02-09 19:35:51 +0100
committerDave Davenport <qball@gmpclient.org>2015-02-09 19:35:51 +0100
commit682907d3409db9c5d22314eb8fc5a0acf9d11b5a (patch)
tree9a0f8bf6d330f210a18b51e89fb0abd8b44e6976 /include/rofi.h
parentf7eeaec60f27bf07175bfe840dfd4c45c7469563 (diff)
Splitting over more files.
Diffstat (limited to 'include/rofi.h')
-rw-r--r--include/rofi.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/include/rofi.h b/include/rofi.h
index 090b84d7..73cc6c09 100644
--- a/include/rofi.h
+++ b/include/rofi.h
@@ -3,8 +3,6 @@
#include <X11/X.h>
#include <glib.h>
-#define OVERLAP( a, b, c, d ) ( ( ( a ) == ( c ) && ( b ) == ( d ) ) || MIN ( ( a ) + ( b ), ( c ) + ( d ) ) - MAX ( ( a ), ( c ) ) > 0 )
-#define INTERSECT( x, y, w, h, x1, y1, w1, h1 ) ( OVERLAP ( ( x ), ( w ), ( x1 ), ( w1 ) ) && OVERLAP ( ( y ), ( h ), ( y1 ), ( h1 ) ) )
/**
* Pointer to xdg cache directory.
@@ -220,14 +218,4 @@ extern Settings config;
*/
void error_dialog ( const char *msg );
-/**
- * @param w The Window to read property from.
- * @param atom The property identifier
- *
- * Get text property defined by atom from window.
- * Support utf8.
- *
- * @returns a newly allocated string with the result or NULL
- */
-char* window_get_text_prop ( Window w, Atom atom );
#endif