summaryrefslogtreecommitdiff
path: root/panel/panel-properties.h
diff options
context:
space:
mode:
Diffstat (limited to 'panel/panel-properties.h')
-rw-r--r--panel/panel-properties.h90
1 files changed, 0 insertions, 90 deletions
diff --git a/panel/panel-properties.h b/panel/panel-properties.h
deleted file mode 100644
index bee9e78c..00000000
--- a/panel/panel-properties.h
+++ /dev/null
@@ -1,90 +0,0 @@
-/* $Id$
- *
- * Copyright (c) 2005 Jasper Huijsmans <jasper@xfce.org>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published
- * by the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program 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
- * GNU Library General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- */
-
-#ifndef __PANEL_POSITION_H__
-#define __PANEL_POSITION_H__
-
-#include <libxfce4panel/xfce-panel-window.h>
-#include <libxfce4panel/xfce-panel-enums.h>
-
-#include "panel.h"
-
-G_BEGIN_DECLS
-
-/* properties */
-gint panel_get_size (Panel *panel);
-
-void panel_set_size (Panel *panel, gint size);
-
-
-gint panel_get_monitor (Panel *panel);
-
-void panel_set_monitor (Panel *panel, gint monitor);
-
-
-XfceScreenPosition panel_get_screen_position (Panel *panel);
-
-void panel_set_screen_position (Panel *panel, XfceScreenPosition position);
-
-
-gint panel_get_xoffset (Panel *panel);
-
-void panel_set_xoffset (Panel *panel, gint xoffset);
-
-
-gint panel_get_yoffset (Panel *panel);
-
-void panel_set_yoffset (Panel *panel, gint yoffset);
-
-
-/* initilization */
-void panel_init_position (Panel *panel);
-
-void panel_init_signals (Panel *panel);
-
-
-/* positioning */
-void panel_center (Panel *panel);
-
-void panel_screen_size_changed (GdkScreen *screen,
- Panel *panel);
-
-void panel_set_autohide (Panel *panel,
- gboolean autohide);
-
-void panel_set_hidden (Panel *panel,
- gboolean hide);
-
-void panel_block_autohide (Panel *panel);
-
-void panel_unblock_autohide (Panel *panel);
-
-void panel_set_full_width (Panel *panel,
- gint fullwidth);
-
-void panel_set_transparency (Panel *panel,
- gint transparency);
-
-void panel_set_activetrans (Panel *panel,
- gboolean activetrans);
-
-G_END_DECLS
-
-#endif /* !__PANEL_POSITION_H__ */
-