68 lines
2.3 KiB
C
68 lines
2.3 KiB
C
/* $Id$ */
|
|
/* Copyright (c) 2007 Pierre Pronchery <khorben@defora.org> */
|
|
/* This file is part of DeforaOS Desktop Browser */
|
|
/* Browser is not free software; you can redistribute it and/or modify it
|
|
* under the terms of the Creative Commons Attribution-NonCommercial-ShareAlike
|
|
* 3.0 Unported as published by the Creative Commons organization.
|
|
*
|
|
* Browser is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
|
* A PARTICULAR PURPOSE. See the Creative Commons Attribution-NonCommercial-
|
|
* ShareAlike 3.0 Unported license for more details.
|
|
*
|
|
* You should have received a copy of the Creative Commons Attribution-
|
|
* NonCommercial-ShareAlike 3.0 along with Browser; if not, browse to
|
|
* http://creativecommons.org/licenses/by-nc-sa/3.0/ */
|
|
|
|
|
|
|
|
#ifndef BROWSER_DESKTOP_H
|
|
# define BROWSER_DESKTOP_H
|
|
|
|
# include <gtk/gtk.h>
|
|
|
|
|
|
/* DesktopIcon */
|
|
/* types */
|
|
typedef struct _DesktopIcon DesktopIcon;
|
|
typedef struct _Desktop Desktop; /* XXX forward declaration */
|
|
|
|
/* functions */
|
|
DesktopIcon * desktopicon_new(Desktop * desktop, char const * name,
|
|
char const * url);
|
|
void desktopicon_delete(DesktopIcon * desktopicon);
|
|
|
|
/* accessors */
|
|
char const * desktopicon_get_path(DesktopIcon * desktopicon);
|
|
gboolean desktopicon_get_selected(DesktopIcon * desktopicon);
|
|
void desktopicon_set_icon(DesktopIcon * desktopicon, GdkPixbuf * icon);
|
|
void desktopicon_set_selected(DesktopIcon * desktopicon, gboolean selected);
|
|
|
|
/* useful */
|
|
void desktopicon_move(DesktopIcon * desktopicon, int x, int y);
|
|
void desktopicon_show(DesktopIcon * desktopicon);
|
|
|
|
|
|
/* Desktop */
|
|
/* functions */
|
|
Desktop * desktop_new(void);
|
|
void desktop_delete(Desktop * desktop);
|
|
|
|
/* useful */
|
|
int desktop_error(Desktop * desktop, char const * message, int ret);
|
|
|
|
void desktop_refresh(Desktop * desktop);
|
|
|
|
void desktop_icon_add(Desktop * desktop, DesktopIcon * icon);
|
|
void desktop_icon_remove(Desktop * desktop, DesktopIcon * icon);
|
|
|
|
void desktop_icons_align(Desktop * desktop);
|
|
void desktop_icons_sort(Desktop * desktop);
|
|
|
|
void desktop_select_all(Desktop * desktop);
|
|
void desktop_select_above(Desktop * desktop, DesktopIcon * icon);
|
|
void desktop_select_under(Desktop * desktop, DesktopIcon * icon);
|
|
void desktop_unselect_all(Desktop * desktop);
|
|
|
|
#endif /* !BROWSER_DESKTOP_H */
|