/*
 theme-indent.c : Overrides irssi's default indenting with getting
 		  indentation strings from theme.

 compile:
   export IRSSI=~/src/irssi
   gcc theme-indent.c -Wall -g -o ~/.irssi/modules/libtheme_indent.so -shared -I$IRSSI -I$IRSSI/src -I$IRSSI/src/fe-common/core -I$IRSSI/src/core -I$IRSSI/src/fe-text -DHAVE_CONFIG_H `pkg-config --cflags glib-2.0`

 usage:
   /LOAD theme_indent

   In theme file:
    indent_default = "default indentation text";
    indent_<level> = "level-specific indentation"; (eg. level_hilight, ...)
    + indent_own_public, indent_own_msg

   So, ircii-like "+" indenting would come if you just added into your
   theme file, inside the abstracts = { .. } block:

    indent_default = "+";


    Copyright (C) 2001 Timo Sirainen

    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
*/
