~ubuntu-branches/ubuntu/warty/matchbox/warty

« back to all changes in this revision

Viewing changes to src/dockbar_client.h

  • Committer: Bazaar Package Importer
  • Author(s): Steinar H. Gunderson
  • Date: 2004-02-16 01:27:37 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20040216012737-fakbjc1vs72vcz2w
Tags: 1:0.6.2-1.1
* Non-Maintainer Upload.
* Add -fPIC to libmb.so linker flags. (Closes: #227920)

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
#include <X11/Xlib.h>
22
22
#include <X11/Xutil.h>
23
23
#include <X11/Xatom.h>
24
 
#ifdef USE_XFT
25
 
#include <X11/Xft/Xft.h>
26
 
#endif
27
24
 
28
25
#include "structs.h"
29
26
#include "base_client.h"
33
30
#include "misc.h"
34
31
 
35
32
client* dockbar_client_new(wm *w, Window win);
36
 
void dockbar_client_button_press(client *c, XButtonEvent *e);
37
 
 
38
 
void dockbar_client_redraw(client *c, Bool use_cache);
39
 
 
40
 
/* new */
 
33
 
41
34
void dockbar_client_show(Client *c);
42
35
void dockbar_client_hide(Client *c);
43
36
void dockbar_client_configure(client *c);
44
37
void dockbar_client_get_coverage(Client *c, int *x, int *y, int *w, int *h);
45
38
void dockbar_client_move_resize(Client *c);
 
39
void dockbar_client_destroy(Client *c);
46
40
 
47
41
#endif
48
42