grim/guifications1

moved .cvsignore to .hgignore
default tip
2010-12-15, Gary Kramlich
8707c33529f9
moved .cvsignore to .hgignore
can't do much more with this since gaim doesn't exist anymore :)
/*
Guifications - The notification plugin to end all notification plugins!
Copyright (C) 2003 Gary Kramlich
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 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 GF_PREFS_H
#define GF_PREFS_H
/***********************************************************************
Globals
***********************************************************************/
#define GF_PREF_ROOT "/plugins/gtk/amc_grim"
#define GF_PREF_PLUGIN_ROOT "/plugins/gtk/amc_grim/guifications"
#define GF_PREF_BEHAVIOR_ROOT "/plugins/gtk/amc_grim/guifications/behavior"
#define GF_PREF_BEHAVIOR_SHOW_SIGN_ON "/plugins/gtk/amc_grim/guifications/behavior/signon"
#define GF_PREF_BEHAVIOR_SHOW_SIGN_OFF "/plugins/gtk/amc_grim/guifications/behavior/signoff"
#define GF_PREF_BEHAVIOR_SHOW_AWAY "/plugins/gtk/amc_grim/guifications/behavior/away"
#define GF_PREF_BEHAVIOR_SHOW_BACK "/plugins/gtk/amc_grim/guifications/behavior/back"
#define GF_PREF_BEHAVIOR_SHOW_IDLE "/plugins/gtk/amc_grim/guifications/behavior/idle"
#define GF_PREF_BEHAVIOR_SHOW_UNIDLE "/plugins/gtk/amc_grim/guifications/behavior/unidle"
#define GF_PREF_BEHAVIOR_SHOW_RECEIVE_MESSAGES "/plugins/gtk/amc_grim/guifications/behavior/rcvmsg"
#define GF_PREF_BEHAVIOR_WINDOW_POS "/plugins/gtk/amc_grim/guifications/behavior/pos"
#define GF_PREF_BEHAVIOR_X "/plugins/gtk/amc_grim/guifications/behavior/x"
#define GF_PREF_BEHAVIOR_Y "/plugins/gtk/amc_grim/guifications/behavior/y"
#define GF_PREF_BEHAVIOR_WINDOW_VERTICAL "/plugins/gtk/amc_grim/guifications/behavior/vertical"
#define GF_PREF_BEHAVIOR_TIMEOUT "/plugins/gtk/amc_grim/guifications/behavior/timeout"
#define GF_PREF_BEHAVIOR_ZOOM "/plugins/gtk/amc_grim/guifications/behavior/zoom"
#define GF_PREF_BEHAVIOR_ALIAS "/plugins/gtk/amc_grim/guifications/behavior/alias"
#define GF_PREF_BEHAVIOR_SHOWAWAY "/plugins/gtk/amc_grim/guifications/behavior/showaway" /* snakez */
#define GF_PREF_BEHAVIOR_MOUSE1 "/plugins/gtk/amc_grim/guifications/behavior/mouse1"
#define GF_PREF_BEHAVIOR_MOUSE2 "/plugins/gtk/amc_grim/guifications/behavior/mouse2"
#define GF_PREF_BEHAVIOR_MOUSE3 "/plugins/gtk/amc_grim/guifications/behavior/mouse3"
#define GF_PREF_APPEARANCE_ROOT "/plugins/gtk/amc_grim/guifications/appearance"
#define GF_PREF_APPEARANCE_IMAGE "/plugins/gtk/amc_grim/guifications/appearance/image"
#define GF_PREF_APPEARANCE_IMAGE_FILE "/plugins/gtk/amc_grim/guifications/appearance/custom_image"
#define GF_PREF_APPEARANCE_FONT "/plugins/gtk/amc_grim/guifications/appearance/font"
#define GF_PREF_APPEARANCE_FONT_FACE "/plugins/gtk/amc_grim/guifications/appearance/face"
#define GF_PREF_APPEARANCE_COLOR "/plugins/gtk/amc_grim/guifications/appearance/color"
#define GF_PREF_APPEARANCE_TEXT_POS "/plugins/gtk/amc_grim/guifications/appearance/tpos"
#define GF_PREF_APPEARANCE_TEXT_CLIPPING "/plugins/gtk/amc_grim/guifications/appearance/clip"
#define GF_PREF_APPEARANCE_TEXT_X "/plugins/gtk/amc_grim/guifications/appearance/text_x"
#define GF_PREF_APPEARANCE_TEXT_Y "/plugins/gtk/amc_grim/guifications/appearance/text_y"
#define GF_PREF_APPEARANCE_PROT_POS "/plugins/gtk/amc_grim/guifications/appearance/ppos"
#define GF_PREF_APPEARANCE_PROT_SIZE "/plugins/gtk/amc_grim/guifications/appearance/psize"
#define GF_PREF_APPEARANCE_PROT_X "/plugins/gtk/amc_grim/guifications/appearance/prot_x"
#define GF_PREF_APPEARANCE_PROT_Y "/plugins/gtk/amc_grim/guifications/appearance/prot_y"
#define GF_PREF_COLORS_ROOT "/plugins/gtk/amc_grim/guifications/colors"
#define GF_PREF_COLORS_FOREGROUND "/plugins/gtk/amc_grim/guifications/colors/foreground"
#define GF_PREF_MESSAGES_ROOT "/plugins/gtk/amc_grim/guifications/messages"
#define GF_PREF_MESSAGES_SIGN_ON "/plugins/gtk/amc_grim/guifications/messages/signon"
#define GF_PREF_MESSAGES_SIGN_OFF "/plugins/gtk/amc_grim/guifications/messages/signoff"
#define GF_PREF_MESSAGES_AWAY "/plugins/gtk/amc_grim/guifications/messages/away"
#define GF_PREF_MESSAGES_BACK "/plugins/gtk/amc_grim/guifications/messages/back"
#define GF_PREF_MESSAGES_IDLE "/plugins/gtk/amc_grim/guifications/messages/idle"
#define GF_PREF_MESSAGES_UNIDLE "/plugins/gtk/amc_grim/guifications/messages/unidle"
#define GF_PREF_MESSAGES_RECEIVE "/plugins/gtk/amc_grim/guifications/messages/receive"
#define GF_PREF_ADVANCED_ROOT "/plugins/gtk/amc_grim/guifications/advanced"
#define GF_PREF_ADVANCED_DELAY "/plugins/gtk/amc_grim/guifications/advanced/delay"
#define GF_PREF_ADVANCED_RELEASE "/plugins/gtk/amc_grim/guifications/advanced/release_notification"
#define GF_PREF_ADVANCED_RELEASE_CHECK "/plugins/gtk/amc_grim/guifications/advanced/release_check"
/***********************************************************************
prototypes
***********************************************************************/
void gf_add_prefs();
/**********************************************************************/
#endif