aboutsummaryrefslogtreecommitdiffstats
path: root/src/mbdesktop_view.h
blob: 659ea35ac460e239328af5ebd4a479929e51691a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/* SPDX-License-Identifier: GPL-2.0-or-later */

#ifndef _HAVE_MBDESKTOP_VIEW_H
#define _HAVE_MBDESKTOP_VIEW_H

#include "mbdesktop.h"

enum {
  ALIGN_LEFT = 0,
  ALIGN_CENTER,
  ALIGN_RIGHT
};

void
mbdesktop_view_init_bg(MBDesktop *mb);

void
mbdesktop_view_set_root_pixmap(MBDesktop *mb, MBPixbufImage *img);

void 
mbdesktop_view_configure(MBDesktop *mb);

void 
mbdesktop_set_view(MBDesktop *mb, int view);

void 
mbdesktop_view_paint(MBDesktop *mb, Bool use_cache);

void
mbdesktop_view_paint_list(MBDesktop *mb, MBPixbufImage *dest_img);

void 
mbdesktop_view_paint_icons(MBDesktop *mb, MBPixbufImage *img_dest);

void
mbdesktop_view_item_highlight (MBDesktop     *mb, 
			       MBDesktopItem *item,
			       int            highlight_style);


#endif